gpt4 book ai didi

c++ - 错误 : member function may not be declared outside of its class.

转载 作者:行者123 更新时间:2023-11-30 05:44:29 24 4
gpt4 key购买 nike

我的 heap.h 文件包含:

bool insert(int key, double data);

在我的 heapCPP.cpp 文件中我有:

 bool heap::insert(int key, double data){
bool returnTemp;
node *temp = new node(key, data);

returnTemp = insert(temp);
delete temp;
return returnTemp;
}

但是,我收到一条错误消息,提示“成员函数“heap::insert”可能无法在其类外重新声明。

最佳答案

您可能在您的 cpp 中忘记了一个右括号,这可以解释为在另一个函数中重新声明它。

关于c++ - 错误 : member function may not be declared outside of its class.,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/29831092/

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