Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我用模板制作了一个节点结构:
template <typename T> struct Node{ T data; Node* next; Node* prev; };
它编译得很好,但是当我尝试在类中使用它时,它给了我错误:在没有参数列表的情况下无效使用模板名称“节点”
在另一个类的上下文中,您需要添加一个模板参数而不是使用 plain Node*:
Node*
struct B { Node<int>* next; };