gpt4 book ai didi

C++ LNK2001 : unresolved external symbol problem

转载 作者:塔克拉玛干 更新时间:2023-11-03 08:23:41 25 4
gpt4 key购买 nike

问候。

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

我开门见山

在我的主体中,我有两个对象。

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 的实例化或在方法调用中从计算机给策略的参数做一些事情。

任何人都可以解释为什么会出现此错误,我根本不明白该错误。以及如何解决/预防这种情况?

编辑*

我刚收到一个共享 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]);
};

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

最佳答案

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

您还没有为链接器提供这些函数的定义。如果您在 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 成员函数,它定义了一个全局函数。

关于C++ LNK2001 : unresolved external symbol problem,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/5647456/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com