在我之前编译得很好的VC ++代码中,我添加了一个函数X(),如下所示:
In the file BaseCollection.h
class Base
{
// code
virtual HRESULT X();
//code
};
IN the file DerivedCollection.h
class Derived:public Base
{
HRESULT X();
}
In the file DerivedCollection.cpp
HRESULT Derived::X
{
// definition of Derived here.
}
还在.cpp文件中正确包含了头文件。 但我仍然不明白我收到链接错误的原因是什么:
错误LNK2001:未解析的外部符号“public:virtual long __thiscall Base :: X()“(?X @ Base @@ UAEJI @ Z)
我真的很努力地解决这个问题。任何人都可以帮助我解决这个问题。 非常感谢提前。
答案 0 :(得分:7)
您是否在X()
中实施了Base
?你需要这样做,或者让它变成纯虚拟的:
class Base
{
// code
virtual HRESULT X() = 0; //pure virtual. Base doesn't need to implement it.
//code
};
此外,您在X()
中对Derived
的定义看起来不对。你可能需要这样的东西:
HRESULT Derived::X()
{
// definition of Derived here.
}
答案 1 :(得分:2)
您永远不会定义函数X
:
HRESULT Base::X()
{
// definition of X
}
您还需要Derived::X()
的定义,因为virtual
也是如此。