1. ホーム
  2. c++

[解決済み] c++ コンパイル時の未定義シンボル

2022-02-02 01:21:02

質問

修正: ヘッダーファイル内に2つのメソッドがありました。

プロジェクトをコンパイルしようとすると、次のようなエラーが発生します。

% make
g++ -o p4 testTree.o tree.o node.o check.o
Undefined                       first referenced
 symbol                             in file
Tree::inTree(int)                   tree.o
ld: fatal: Symbol referencing errors. No output written to p4
collect2: ld returned 1 exit status
*** Error code 1
make: Fatal error: Command failed for target `p4'

メイクファイル

p4: testTree.o tree.o node.o check.o
    g++ -o p4 testTree.o tree.o node.o check.o
testTree.o: testTree.cc tree.h node.h check.h
    g++ -c -Wall -Werror testTree.cc

tree.o: tree.h tree.cc node.h check.h
    g++ -c -Wall -Werror tree.cc
node.o: node.h node.cc check.h
    g++ -c -Wall -Werror node.cc
check.o: check.h check.cc
    g++ -c -Wall -Werror check.cc
clean:
    rm -f *~ *.o p4

tree.cc と tree.h の関連コードです。

ツリーシーケー

...
bool Tree::inTree(int k) const
{
     return locate(k,root) != NULL;
}
...

tree.h

#ifndef TREE_H
#define TREE_H

#include "node.h"
#include "check.h"
using namespace std;
class Tree
{
  private:
    Node *root;
  public:
    Tree();
    Tree(const Tree & t);
    const Tree & operator=(const Tree &t);
    friend ostream & operator<<(ostream &out, const Tree &t);
    bool inTree(int k) const;
    double & operator[](int k);
    double & operator[](int k) const;
    ~Tree();
    bool inTree(int index);
  private:
    Node * locate(int k, Node *rt) const;
    ostream & display(ostream &out, Node *r, int dir=Node::L) const;
    void add(int k, Node*&r);
    void kill(Node *&rt);
    void copy(Node *rt, Node *&newRt);
};
#endif

すごく簡単なことのような気がするんですが、なかなかわからないんです。

どのように解決するのですか?

あなたが受け取っているメッセージは、実際には リンカ コンパイラーからではありません。

メンバ関数の1つです。 bool Tree::inTree(int index); として正しく宣言され、定義されています。 const メンバ関数です。

 // Declaration in tree.h
 bool inTree(int index) const;

 // Definition in tree.cc
 bool Tree::inTree(int k) const
 //                       ^^^^^

しかし tree.h また、この非 const のオーバーロード inTree() :

// Declaration in tree.h, definition (supposedly) nowhere
bool Tree::inTree(int k)

対象 定義がない . これはリンカーが文句を言うものです。