我无法弄清楚我的程序出了什么问题。我用头文件中的类声明和成员函数声明,一个.cpp文件中的成员函数定义来构造它,然后我在main.cpp中有一个主驱动程序。我已将它们全部放在 ideone 上的一个文件中,以便我可以在此处发布程序:
ideone上显示的错误确实是我的IDE在构建时显示的错误。有人可以指出我做错了什么吗?
错误是:
prog.cpp: In instantiation of ‘IntDLLNode<int>’:
prog.cpp:56: instantiated from ‘void IntDLList<T>::addToDLLHead(const T&) [with T = int]’
prog.cpp:215: instantiated from here
prog.cpp:8: error: template argument required for ‘struct IntDLList’
Line 56: head = new IntDLLNode<T>(el,head,NULL);
Line 215: dll.addToDLLHead(numero);
Line 8: class IntDLLNode {
你可以忽略 try/catch 子句,我还没有完成那部分的工作——我只是想克服当前的错误。