1

问候。

我已经寻找解决方案,但我认为这个问题是个人代码特定的,因此我在这里发帖。

我会直奔主题。

在我的主要我有两个对象。

Computer *computer = new Computer();
Player *player = new Player();

在计算机类中,在标题中我有以下内容:

  private:

Strategy *strategy;
int winningPosition;
int twoInRow;
int counter;
int makeTwo;

然后在 Computer.cpp 中:

Computer::Computer(char token, bool hasTurn)
{
    m_token = token;
    m_hasTurn = hasTurn;
    strategy = new Strategy();
}

int Computer::getMove(const char (&board)[9])
{
    twoInRow = strategy->checkTwoInRow(board);
    counter = strategy->counter(board);
    makeTwo = strategy->makeTwo(board);

    if(twoInRow != 0)
    {
        return twoInRow - 1;
    } else if(counter != 0) {
        return counter - 1;
    } else if(makeTwo != 0) {
        return makeTwo - 1;
    } else {
        return 0;
    }
}

在这一点上,我认为问题出现了。

从类 Strategy 中调用的方法都需要了解棋盘,因此:

int checkTwoInRow(const char (&board)[9]);
int counter(const char (&board)[9]);
int makeTwo(const char (&board)[9]);

我遇到的问题,无法编译:

Error   1   error LNK2019: unresolved external symbol "public: int __thiscall Strategy::makeTwo(char const (&)[9])" (?makeTwo@Strategy@@QAEHAAY08$$CBD@Z) referenced in function "public: int __thiscall Computer::getMove(char const (&)[9])" (?getMove@Computer@@QAEHAAY08$$CBD@Z)    C:\CPP\TTT\Computer.obj tictactoeCPP

Error   2   error LNK2019: unresolved external symbol "public: int __thiscall Strategy::counter(char const (&)[9])" (?counter@Strategy@@QAEHAAY08$$CBD@Z) referenced in function "public: int __thiscall Computer::getMove(char const (&)[9])" (?getMove@Computer@@QAEHAAY08$$CBD@Z)    C:\CPP\TTT\Computer.obj tictactoeCPP

Error   3   error LNK2019: unresolved external symbol "public: int __thiscall Strategy::checkTwoInRow(char const (&)[9])" (?checkTwoInRow@Strategy@@QAEHAAY08$$CBD@Z) referenced in function "public: int __thiscall Computer::getMove(char const (&)[9])" (?getMove@Computer@@QAEHAAY08$$CBD@Z)    C:\CPP\TTT\Computer.obj tictactoeCPP

作为一个 c++ 菜鸟,我完全不知道为什么或如何导致这个问题。我认为它必须与计算机类中的 Strategy 实例化或计算机给定的参数在方法调用中的策略有关。

谁能解释为什么会发生这个错误,我完全不明白这个错误。以及如何解决/预防这种情况?

编辑*

我刚收到一个分享策略类的请求:

策略.h:

    #pragma once
class Strategy
{
public:
    Strategy(void);
    ~Strategy(void);

    int checkTwoInRow(const char (&board)[9]);
    int counter(const char (&board)[9]);
    int makeTwo(const char (&board)[9]);
};

该类定义了这些方法,我不会发布它们,因为它们很长。

4

2 回答 2

9

这是一个链接错误,与实例化或参数无关。

您还没有为链接器提供这些函数的定义。如果您在 Strategy.cpp 中定义了它们,则需要对其进行编译并将其作为参数添加到链接器。你如何做到这一点完全取决于你使用什么工具来构建你的程序。
如果您使用的是 Visual Studio(或任何其他 IDE),一旦您将 Strategy.cpp 添加到项目中,它应该会自动处理它。

或者您是否像这样定义它们:

int checkTwoInRow(const char (&board)[9])
{
   // Do something with board the wrong way
}

而不是这样:

int Strategy::checkTwoInRow(const char (&board)[9])
{
   // Do something with board the right way
}

第一个没有定义 Strategy 成员函数,它定义了一个全局函数。

于 2011-04-13T11:34:49.570 回答
3

该错误只是说明您已声明但未定义成员函数Strategy::makeTwoStrategy::counterStrategy::checkTwoInRow。你确定你实现了它们(在一个实际正在编译的源文件中)并且你没有不小心将它们定义为自由函数吗?

于 2011-04-13T10:08:16.807 回答