gpt4 book ai didi

c++ - 未定义对vtable的引用

转载 作者:行者123 更新时间:2023-12-03 07:39:14 25 4
gpt4 key购买 nike

生成C++程序时,出现错误消息

undefined reference to 'vtable...



这个问题是什么原因造成的?我如何解决它?

碰巧我收到以下代码的错误(所涉及的类是CGameModule。)并且我一生无法理解问题所在。起初,我认为这与忘记赋予虚拟功能一个实体有关,但是据我了解,一切都在这里。继承链有点长,但是这里是相关的源代码。我不确定应该提供什么其他信息。

注意:似乎是构造函数发生此错误的地方。

我的代码:
class CGameModule : public CDasherModule {
public:
CGameModule(Dasher::CEventHandler *pEventHandler, CSettingsStore *pSettingsStore, CDasherInterfaceBase *pInterface, ModuleID_t iID, const char *szName)
: CDasherModule(pEventHandler, pSettingsStore, iID, 0, szName)
{
g_pLogger->Log("Inside game module constructor");
m_pInterface = pInterface;
}

virtual ~CGameModule() {};

std::string GetTypedTarget();

std::string GetUntypedTarget();

bool DecorateView(CDasherView *pView) {
//g_pLogger->Log("Decorating the view");
return false;
}

void SetDasherModel(CDasherModel *pModel) { m_pModel = pModel; }


virtual void HandleEvent(Dasher::CEvent *pEvent);

private:



CDasherNode *pLastTypedNode;


CDasherNode *pNextTargetNode;


std::string m_sTargetString;


size_t m_stCurrentStringPos;


CDasherModel *m_pModel;


CDasherInterfaceBase *m_pInterface;
};

继承自...
class CDasherModule;
typedef std::vector<CDasherModule*>::size_type ModuleID_t;

/// \ingroup Core
/// @{
class CDasherModule : public Dasher::CDasherComponent {
public:
CDasherModule(Dasher::CEventHandler * pEventHandler, CSettingsStore * pSettingsStore, ModuleID_t iID, int iType, const char *szName);

virtual ModuleID_t GetID();
virtual void SetID(ModuleID_t);
virtual int GetType();
virtual const char *GetName();

virtual bool GetSettings(SModuleSettings **pSettings, int *iCount) {
return false;
};

private:
ModuleID_t m_iID;
int m_iType;
const char *m_szName;
};

继承自...
namespace Dasher {
class CEvent;
class CEventHandler;
class CDasherComponent;
};

/// \ingroup Core
/// @{
class Dasher::CDasherComponent {
public:
CDasherComponent(Dasher::CEventHandler* pEventHandler, CSettingsStore* pSettingsStore);
virtual ~CDasherComponent();

void InsertEvent(Dasher::CEvent * pEvent);
virtual void HandleEvent(Dasher::CEvent * pEvent) {};

bool GetBoolParameter(int iParameter) const;
void SetBoolParameter(int iParameter, bool bValue) const;

long GetLongParameter(int iParameter) const;
void SetLongParameter(int iParameter, long lValue) const;

std::string GetStringParameter(int iParameter) const;
void SetStringParameter(int iParameter, const std::string & sValue) const;

ParameterType GetParameterType(int iParameter) const;
std::string GetParameterName(int iParameter) const;

protected:
Dasher::CEventHandler *m_pEventHandler;
CSettingsStore *m_pSettingsStore;
};
/// @}


#endif

最佳答案

GCC FAQ上有一个条目:

The solution is to ensure that all virtual methods that are not pure are defined. Note that a destructor must be defined even if it is declared pure-virtual [class.dtor]/7.


因此,您需要提供虚拟析构函数的定义:
virtual ~CDasherModule()
{ };

关于c++ - 未定义对vtable的引用,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/65175180/

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