老实说,我不知道为什么会这样。我检查,双重检查,三重检查花括号,分号,移动构造函数等,它仍然给我这个错误。
相关代码如下。
BinTree.h
#ifndef _BINTREE_H
#define _BINTREE_H
class BinTree
{
private:
struct Node
{
float data;
Node *n[2];
};
Node *r;
Node* make( float );
public:
BinTree();
BinTree( float );
~BinTree();
void add( float );
void remove( float );
bool has( float );
Node* find( float );
};
#endif
和BinTree.cpp
#include "BinTree.h"
BinTree::BinTree()
{
r = make( -1 );
}
Node* BinTree::make( float d )
{
Node* t = new Node;
t->data = d;
t->n[0] = NULL;
t->n[1] = NULL;
return t;
}
答案 0 :(得分:21)
因为在线:
Node* BinTree::make( float d )
Node
类型是class BinTree
的成员。
成功:
BinTree::Node* BinTree::make( float d )