我有一个我无法解决的链接器问题.. 已经尝试了我能想到的任何事情我有一个基类(人)和一个派生类(经销商),我只想从 CardStack 类中调用构造函数是 Dealer 类的成员。
这是我的代码:
人.h
#ifndef PERSON_H
#define PERSON_H
#include "Card.h"
#include "Hand.h"
class Person
{
public:
Person(void);
virtual ~Person(void);
virtual bool TakeCard(Card c);
virtual bool Lost(void);
protected:
virtual void CheckLost(void);
bool b_Lost;
Hand m_Hand;
};
#endif
经销商.h
#ifndef DEALER_H
#define DEALER_H
#include "Person.h"
#include "Card.h"
#include "CardStack.h"
class Dealer : public Person
{
public:
Dealer(int stackcount);
virtual ~Dealer(void);
bool TakeCard(Card c);
bool Lost(void);
Card GiveCard(Card c);
protected:
void CheckLost(void);
CardStack m_GameStack;
};
#endif
经销商.cpp
#include "Dealer.h"
Dealer::Dealer(int stackcount) : Person(), m_GameStack(stackcount)
{
};
Dealer::~Dealer(void)
{
};
bool Dealer::TakeCard(Card c)
{
if(!b_Lost || m_Hand.GetTotal() <= 17)
{
m_Hand.Take(c);
CheckLost();
return true;
}
return false;
};
void Dealer::CheckLost()
{
if (m_Hand.GetTotal() > 21)
{
b_Lost = true;
}
};
bool Dealer::Lost()
{
return b_Lost;
};
老实说,我尝试了我能想到的一切,但我无法弄清楚错误是什么......
这是编译 Dealer.cpp 时的输出:
1>Dealer.obj : 错误 LNK2019: 函数 __unwindfunclet$??0Dealer@@QAE@H@ 中引用的未解析外部符号“public: virtual __thiscall Person::~Person(void)”(??1Person@@UAE@XZ) Z$0
1>Dealer.obj : error LNK2001: unresolved external symbol "public: virtual bool __thiscall Person::TakeCard(class Card)" (?TakeCard@Person@@UAE_NVCard@@@Z)
1>Dealer.obj : 错误 LNK2001: 无法解析的外部符号 "public: virtual bool __thiscall Person::Lost(void)" (?Lost@Person@@UAE_NXZ)
1>Dealer.obj:错误 LNK2001:未解析的外部符号“受保护:虚拟 void __thiscall Person::CheckLost(void)”(?CheckLost@Person@@MAEXXZ)