3

这可能很幼稚,但我对 cpp 的预处理器感到很困惑:我定义了一个头文件——Node.h:

#ifndef NODE_H_
#define NODE_H_

#include<iostream>
class Node{
    friend std::ostream &operator<<(std::ostream &os, const Node & n);
    public:
        Node(const int i = -1);
    private:
        Node * next;
        int value;
    friend class List;

};
#endif

然后我在 Node.cpp 中定义了方法:

#include "Node.h"
using namespace std;

Node::Node(const int i):value(i), next(NULL){}

ostream& operator <<(ostream & os, const Node& n){
    return os<<"value : "<<n.value<<endl;
}

最后,我有一个 test.cpp 文件来检查预处理器:

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

int main(){
    Node * n = new Node;
    cout<<*n;
}

但是,当我尝试使用 gcc 进行编译时,出现以下错误:

/home/xuan/lib/singleLinkedList/test.cpp:6:'Node::Node(int)'未定义引用

4

1 回答 1

1

鉴于您的文件,当我运行时:

$ g++ test.cpp
/tmp/ccM7wRNZ.o:test.cpp:(.text+0x2c): undefined reference to `Node::Node(int)'
/tmp/ccM7wRNZ.o:test.cpp:(.text+0x44): undefined reference to `operator<<(std::basic_ostream<char, std::char_traits<char> >&, Node const&)'
/usr/lib/gcc/i686-pc-cygwin/4.5.3/../../../../i686-pc-cygwin/bin/ld: /tmp/ccM7wRNZ.o: bad reloc address 0x0 in section `.ctors'
collect2: ld returned 1 exit status

...但是如果我运行:

Simon@R12043 ~/dev/test/cpp
$ g++ test.cpp node.cpp

Simon@R12043 ~/dev/test/cpp
$

因此,我认为您不包括node.cpp要链接到项目中的文件。也就是说,链接器没有找到Node类。

于 2013-06-27T03:19:29.643 回答