问候。
我已经寻找解决方案,但我认为这个问题是个人代码特定的,因此我在这里发帖。
我会直奔主题。
在我的主要我有两个对象。
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]);
};
该类定义了这些方法,我不会发布它们,因为它们很长。