为什么我为架构x86_64错误获取此未定义符号

时间:2014-11-16 03:18:13

标签: c++ xcode linker-errors

我收到了x86_64架构错误的未定义符号,但我不确定原因。 我正在使用链接列表和模板制作堆栈数据类型。

StackLinkedList.h

#ifndef __StackLinkedList__StackLinkedList__
#define __StackLinkedList__StackLinkedList__

#include <iostream>
using namespace std;

#endif /* defined(__StackLinkedList__StackLinkedList__) */

template <class Item>
class StackLinkedList {
public:
    StackLinkedList();
    void push(Item p);

private:
    StackLinkedList<Item>* node;
    Item data;
};

StackLinkedList.cpp

#include "StackLinkedList.h"

template <class Item>
StackLinkedList<Item>::StackLinkedList() {
    node = NULL;
}

template <class Item>
void StackLinkedList<Item>::push(Item p) {
    if(node == NULL) {
        StackLinkedList<Item>* nextNode;
        nextNode->data = p;
        node = nextNode;
    }else {
        node->push(p);
    }
}

的main.cpp

#include "StackLinkedList.h"

int main() {
    StackLinkedList<int>* stack;

     stack->push(2);
}

错误详情:

Undefined symbols for architecture x86_64:
  "StackLinkedList<int>::push(int)", referenced from:
      _main in main.o
ld: symbol(s) not found for architecture x86_64
clang: error: linker command failed with exit code 1 (use -v to see invocation)

我正在使用Xcode 6.1。

1 个答案:

答案 0 :(得分:2)

您必须在头文件中声明/定义模板函数,因为编译器必须在编译时使用有关实例化类型的信息。因此,将模板函数的定义放在.h文件中,而不是放在cpp中。

请参阅 Why can templates only be implemented in the header file? 了解更多详情。