模板错误:未定义的引用

时间:2013-01-18 13:39:46

标签: templates linked-list

我正在尝试使用模板创建一个类链接列表,但是当我编译它时,IDE会出错: 对`listType :: add(int)的未定义引用 我不明白为什么?

linkedList.h

#ifndef LINKEDLISTS_H_INCLUDED
#define LINKEDLISTS_H_INCLUDED
#include "struct.h"
template <class type1>

class listType
{
public:

void add(type1);
void print();
private:
node<type1> *head;
};


#endif // LINKEDLISTS_H_INCLUDED

LinkedList.cpp

#include "linkedLists.h"
#include "struct.h"
#include <iostream>
using namespace std;

template <class type1>
void listType<type1>::add(type1 temp)
{
node<type1> *t;
t->value=temp;
t->link=head;
head=t;
}
template <class type1>
void listType<type1>::print()
{
node<type1> *p;
p=head;
while(p!=NULL)
{

    cout<<p->value<<endl;
    p=p->link;
}

}

Struct.h

#ifndef STRUCT_H_INCLUDED
#define STRUCT_H_INCLUDED
template <class type1>

struct node
{

type1 value;
node *link;
};


#endif // STRUCT_H_INCLUDED

的main.cpp

#include <iostream>
#include "linkedLists.h"
using namespace std;


int main()
{
listType <int> test;
test.add(5);

}

1 个答案:

答案 0 :(得分:2)

你不能在cpp文件中实现模板化的类和函数。

代码必须位于标头中,因此包含文件可以查看实现,并使用模板参数类型实例化正确的版本。