VS2008:error C2259 cannot instantiate abstract class
Visual Studio2008编译错误error C2259 cannot instantiate abstract class 经过检查,发现源代码中确实已经派生了虚函数,派生的虚函数源文件也正常编译。 最后在微软的官方网站上找到了答案(可能只是error C2259其中一种可能的原因,供参考): This behavior is by design with VS 2005. The root cause is because wchar_t is a different type than unsigned short though in prior versions of Visual C++, the compiler considered them to be the same type. In this sample code, the type library uses [...]
NaRiver Blog