gpt4 book ai didi

c++ - 没有匹配的调用函数

转载 作者:行者123 更新时间:2023-11-28 00:23:21 25 4
gpt4 key购买 nike

我有一个 .h文件包含

template <typename DataType>
class BST
{
private:
struct BinaryNode
{
//variables
}
public:
BinaryNode *root;

int contains(const DataType &x, BinaryNode *&t) const;
}

我正在尝试调用 contains来自:

void SequenceMap::merge(BST<SequenceMap> theMap)
{
theMap.contains(this, theMap.root);
}

执行contains

template <typename DataType>int BST<DataType>::contains(const DataType &x, BST<DataType>::BinaryNode *&t) const
{
//some stuff
}

我遇到的问题是:no matching function call to BST<SequenceMap>::contains(SequenceMap* const, BST<SequenceMap>::BinaryNode*&)theMap.contains(this,theMap.root)

我不确定这是哪一部分是错误的 thisDatatype的变量SequenceMaptheMap.rootBinaryNode .我试过将其更改为 *theMap.root但这没有帮助。

最佳答案

该函数通过引用而不是指针调用 x。你可能想要:

theMap.contains(*this, theMap.root);

关于c++ - 没有匹配的调用函数,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/26348457/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com