这真的让我感到震惊,而且 Visual Studio 2008 是如此无脑,以至于它对以下错误根本没有帮助。
我的 C++ 解决方案中有几个项目。一个项目在 crashreporter.h 和 crashreporter.cpp 文件中有 C++ 基类 CCrashReporter。
我需要从中派生另一个类,该类位于同一解决方案中的另一个项目中。所以我这样做:
//From CrashReporter2.h
#pragma once
#include "..\BaseModules\CrashReporter.h"
class CCrashReporter2 :
public CCrashReporter
{
public:
CCrashReporter2(void);
virtual ~CCrashReporter2(void);
};
接着:
//From crashreporter2.cpp
#include "StdAfx.h"
#include "CrashReporter2.h"
CCrashReporter2::CCrashReporter2(void):
CCrashReporter(ENTERY_PARAM_FOR_REPORTER2)
{
}
CCrashReporter2::~CCrashReporter2(void)
{
}
上面的代码编译好了,但是当链接器运行时,我得到了这些:
1>CrashReporter2.obj : error LNK2019: unresolved external symbol "public: __thiscall CCrashReporter::CCrashReporter(int) blah-blah
1>CrashReporter2.obj : error LNK2019: unresolved external symbol "public: __thiscall CCrashReporter::~CCrashReporter(void) blah-blah
1>C:\Users\Dev\C++\ProjName123\Debug\Mod123.exe : fatal error LNK1120: 2 unresolved externals