gpt4 book ai didi

c++ - "Class type redefinition"头文件和源文件之间的错误

转载 作者:可可西里 更新时间:2023-11-01 18:28:33 25 4
gpt4 key购买 nike

所以我遇到了一个问题,我确信有一个非常明显的解决方案,但我似乎无法弄清楚。基本上,当我尝试在我的头文件中进行类定义并在我的源文件中进行实现时,我收到一条错误消息,提示我正在重新定义我的类。使用 Visual C++ 2010 Express。

确切错误:“错误 C2011:‘节点’:‘类’类型重新定义”

示例代码如下:

节点.h:

#ifndef NODE_H
#define NODE_H
#include <string>

class Node{
public:
Node();
Node* getLC();
Node* getRC();
private:
Node* leftChild;
Node* rightChild;
};

#endif

节点.cpp:

#include "Node.h"
#include <string>

using namespace std;


class Node{
Node::Node(){
leftChild = NULL;
rightChild = NULL;
}

Node* Node::getLC(){
return leftChild;
}

Node* Node::getRC(){
return rightChild;
}

}

最佳答案

class Node{
Node::Node(){
leftChild = NULL;
rightChild = NULL;
}

Node* Node::getLC(){
return leftChild;
}

Node* Node::getRC(){
return rightChild;
}

}

您在代码中声明了两次该类,第二次是在您的 .cpp 文件中。为了为您的类编写函数,您需要执行以下操作

Node::Node()
{
//...
}

void Node::FunctionName(Type Params)
{
//...
}

不需要上课

关于c++ - "Class type redefinition"头文件和源文件之间的错误,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13484178/

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