gpt4 book ai didi

C++函数作为参数错误

转载 作者:塔克拉玛干 更新时间:2023-11-03 07:44:52 25 4
gpt4 key购买 nike

我试图在我创建的二叉搜索树类中遍历的每个节点上运行一个函数。这是遍历 BST 的节点并在每个节点上运行作为参数传入的函数的函数:

template<class ItemType, class OtherType>
void BinarySearchTree<ItemType, OtherType>::Inorder(void visit(BinaryNode<ItemType, OtherType>&), BinaryNode<ItemType, OtherType>* node_ptr) const {
if (node_ptr != nullptr) {
Inorder(visit, node_ptr->GetLeftPtr());
BinaryNode<ItemType, OtherType> node = *node_ptr;
visit(node);
Inorder(visit, node_ptr->GetRightPtr());
} // end if
} // end inorder

这是 BST 类的私有(private)成员函数,因此它被公共(public)成员函数调用:

template<class ItemType, class OtherType>
void BinarySearchTree<ItemType, OtherType>::InorderTraverse(void visit(BinaryNode<ItemType, OtherType>&)) const
{
Inorder(visit, root_);
} // end inorderTraverse

在我的主文件中,我创建了这个函数作为参数传入:

void displayItem(BinaryNode<string, LinkedQueue<int> >& anItem)

遍历是这样调用的:

tree1Ptr->InorderTraverse(displayItem);

当我编译时,我得到了这个错误,我不知道如何修复它。

MainBST.cpp:62:29: error: cannot initialize a parameter of type 'void
(*)(BinaryNode<std::__1::basic_string<char>, LinkedQueue<int> > &)' with
an lvalue of type 'void (string &)' (aka 'void (basic_string<char,
char_traits<char>, allocator<char> > &)'): type mismatch at 1st parameter
('BinaryNode<std::__1::basic_string<char>, LinkedQueue<int> > &' vs
'string &' (aka 'basic_string<char, char_traits<char>, allocator<char> >
&'))
tree1Ptr->InorderTraverse(displayItem);
^~~~~~~~~~~
./BinarySearchTree.h:42:29: note: passing argument to parameter 'visit' here
void InorderTraverse(void visit(BinaryNode<ItemType, OtherType>&)) const;

如果有人理解错误并能破译它并帮助我,我将不胜感激。如果您需要我删除更多代码,我会很乐意这样做。非常感谢!

最佳答案

error: cannot initialize a parameter of type 'void (*)(BinaryNode, LinkedQueue > &)' with an lvalue of type 'void (string &)' (aka 'void (basic_string, allocator > &)'): type mismatch at 1st parameter ('BinaryNode, LinkedQueue > &' vs 'string &' (aka 'basic_string, allocator > &'))

打破它!

cannot initialize a parameter of type

使用错误类型的参数调用函数。

'void (*)(BinaryNode, LinkedQueue > &)'

预期类型

with an lvalue of type 'void (string &)'

提供的类型

英文翻译:Function was called with void displayItem(std::string &) , 不是 void displayItem(BinaryNode<string, LinkedQueue<int> >& anItem) .

解决方案:确保void displayItem(BinaryNode<string, LinkedQueue<int> >& anItem)在首次使用之前声明。可能搜索并删除或重命名 void displayItem(std::string &)以防将来混淆。

关于C++函数作为参数错误,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/40967730/

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