出现以下错误:
Error 2 error LNK1120: 1 unresolved externals c:\users\james\documents\visual studio 2013\Projects\PlatformGameEngine\Debug\PlatformGameEngine.exe 1 1 PlatformGameEngine
Error 1 error LNK2001: unresolved external symbol "public: virtual void __thiscall PlatformGameEngine::IOS::CreateWindow(class PlatformGameEngine::WindowProperties)" (?CreateWindow@IOS@PlatformGameEngine@@UAEXVWindowProperties@2@@Z) c:\Users\James\documents\visual studio 2013\Projects\PlatformGameEngine\PlatformGameEngine\App.obj PlatformGameEngine
什么是 ?和@符号表明此编译器错误?
最佳答案
这是您的函数的内部名称,即“混杂”名称。它以明确的语言编写,您的计算机用于在程序构建时或运行时链接到的所有库中唯一标识程序中的功能。
关于c++ - 什么是 ?和@符号表明此编译器错误? -Visual Studio 2013编译器,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/29688034/