【发布时间】:2009-11-27 20:39:50
【问题描述】:
我正在尝试用 C++ 编写 2-3-4 树的实现。我已经有一段时间没有使用模板了,我遇到了一些错误。这是我非常基本的代码框架:
节点.h:
#ifndef TTFNODE_H
#define TTFNODE_H
template <class T>
class TreeNode
{
private:
TreeNode();
TreeNode(T item);
T data[3];
TreeNode<T>* child[4];
friend class TwoThreeFourTree<T>;
int nodeType;
};
#endif
node.cpp:
#include "node.h"
using namespace std;
template <class T>
//default constructor
TreeNode<T>::TreeNode(){
}
template <class T>
//paramerter receving constructor
TreeNode<T>::TreeNode(T item){
data[0] = item;
nodeType = 2;
}
TwoThreeFourTree.h
#include "node.h"
#ifndef TWO_H
#define TWO_H
enum result {same, leaf,lchild,lmchild,rmchild, rchild};
template <class T> class TwoThreeFourTree
{
public:
TwoThreeFourTree();
private:
TreeNode<T> * root;
};
#endif
TwoThreeFourTree.cpp:
#include "TwoThreeFourTree.h"
#include <iostream>
#include <string>
using namespace std;
template <class T>
TwoThreeFourTree<T>::TwoThreeFourTree(){
root = NULL;
}
还有main.cpp:
#include "TwoThreeFourTree.h"
#include <string>
#include <iostream>
#include <fstream>
using namespace std;
int main(){
ifstream inFile;
string filename = "numbers.txt";
inFile.open (filename.c_str());
int curInt = 0;
TwoThreeFourTree <TreeNode> Tree;
while(!inFile.eof()){
inFile >> curInt;
cout << curInt << " " << endl;
}
inFile.close();
}
当我尝试从命令行编译时: g++ main.cpp node.cpp TwoThreeFourTree.cpp
我收到以下错误:
In file included from TwoThreeFourTree.h:1,
from main.cpp:1:
node.h:12: error: ‘TwoThreeFourTree’ is not a template
main.cpp: In function ‘int main()’:
main.cpp:13: error: type/value mismatch at argument 1 in template parameter list for ‘template<class T> class TwoThreeFourTree’
main.cpp:13: error: expected a type, got ‘TreeNode’
main.cpp:13: error: invalid type in declaration before ‘;’ token
In file included from node.cpp:1:
node.h:12: error: ‘TwoThreeFourTree’ is not a template
In file included from TwoThreeFourTree.h:1,
from TwoThreeFourTree.cpp:1:
node.h:12: error: ‘TwoThreeFourTree’ is not a template
我的主要问题是为什么它说“错误:‘TwoThreeFourTree’不是模板”。有没有人有任何想法?感谢您提前提供所有建议/帮助... 丹
【问题讨论】:
-
不完全是“完全”的骗局,是吗?
-
@Pavel:不是完全重复的,这里用户不希望模板的所有实例都可以访问,而只希望具有相同特定类型的实例。
TwoThreeFourTree<int>应该可以访问TreeNode<int>,但不一定可以访问TreeNode<double> -
貌似除了
TwoThreeFourTree没有别的可以用TreeNode,还是应该看看;为什么不直接将节点类型设为树类的private嵌套非模板类?
标签: c++ class templates g++ friend