我得到了一个非常令人沮丧的错误,我现在已经苦苦挣扎了一段时间。
在我开始将数据类型从int更改为使用模板之前,我让程序运行正常。这是我得到的错误:
g++ -c UseList.cpp
g++ -c List.cpp
g++ UseList.o List.o -o UseList
UseList.o: In function `main':
UseList.cpp:(.text+0xee): undefined reference to `List<int>::addtofront(int)'
UseList.cpp:(.text+0x10b): undefined reference to `List<int>::show()'
collect2: ld returned 1 exit status
make: *** [UseList] Error 1
我的代码的相关部分如下。请告诉我这可能是什么。我完全无能为力。谢谢!
UseList.cpp:
#include <iostream>
#include <cstdlib>
#include "List.h"
using namespace std;
int main (int argc, char *argv[]) {
cout << "-----------------------------------------" << endl;
cout << "----------------LIST ONE-----------------" << endl;
cout << "-----------------------------------------" << endl;
List<int> *list1;
srand(time(NULL));
cout << "# Add 3 random ints to the front:" << endl;
for(int i=0;i<3;i++){
list1->addtofront(rand() % 10000);
}
list1->show();
}
List.h
#include <iostream>
using namespace std;
#ifndef LIST
#define LIST
template <class L>
class Node {
public:
// constructors and destructors
Node<L>(L data);
Node();
Node<L>(const Node<L> &n);
// components of a node
L data;
Node *next;
Node *prev;
};
template <class L>
class List
{
private:
Node<L> *first;
Node<L> *last;
int num_elements;
public:
// constructors and destructors
List();
~List();
List<L>(const List<L> &l);
List *addtofront(L);
void show();
[...] // unnecessary code removed
};
// #include "List.cpp"
#endif
List.cpp
#include "List.h"
using namespace std;
// -------------------------------------
// ------------Node class---------------
// -------------------------------------
template <class L>
Node<L>::Node(L data_input) {
data = data_input;
next = 0;
prev = 0;
}
template <class L>
Node<L>::Node() {}
template <class L>
Node<L>::Node(const Node<L> &n) {
data = n.data;
next = n.next;
prev = n.prev;
}
// -------------------------------------
// ------------List class---------------
// -------------------------------------
template <class L>
List<L>::List() {
first = NULL;
last = NULL;
num_elements = 0;
}
template <class L>
// Appends data to the front of the list.
List<L> *List<L>::addtofront(L data) {
Node<L> *new_node = new Node<L>(data);
if(first == 0 && last == 0) {
first = new_node;
last = new_node;
} else {
// there will be no previous since
// it is the first
new_node->next = first;
first->prev = new_node;
first = new_node;
}
num_elements++;
}
template <class L>
// Append data to the end of the list.
List<L> *List<L>::addtoback(L data) {
[...]
}
template <class L>
// Return a pointer to a copy of the first item in the list.
Node<L> *List<L>::getfirst() {
[...]
}
template <class L>
// Return a list of all but the first element of the original.
List<L> List<L>::getrest() {
[...]
}
template <class L>
// Print out the data in each node separated by a space.
void List<L>::show() {
Node<L> *current_node = first;
while (current_node != NULL) {
cout << current_node->data << " ";
current_node = current_node->next;
}
cout << endl;
}
template <class L>
// Returns a reversed version of toReverse
List<L> List<L>::reverse(List toReverse) {
[...]
}
答案 0 :(得分:2)
您需要将所有模板实现放在头文件中。由于编译器不知道函数可能具有什么类型,因此无法编译cpp文件。 所以将所有东西从List.cpp移到List.h,它应该可以工作。
答案 1 :(得分:1)
模板功能必须与您将使用的数据单元保持一致。 这是因为模板不直接声明类型,它们在使用时会被实例化。
将模板实现放在头文件中。
您可以将文件“list.cpp”重命名为名为“list.hpp”的文件,并将其包含在“list.h”中。有人也使用“list.inc”的惯例
答案 2 :(得分:0)
如果您的链接行如下所示,它应该会更好:
g ++ List.o UseList.o -o UseList
答案 3 :(得分:0)
List.h
:
template <class L>
class List
{
/* ... */
List *addtofront(L);
但在List.cpp
:
template <class L>
// Appends data to the front of the list.
List<L> *List<L>::addtofront(L data) {
我看到List*
和List<L> *
。