我刚刚将我的代码块从 10.5 升级到 12.11 版本
在以前的版本中一切正常,但是在使用最新版本的代码块编译时出现运行时错误
调用堆栈将我的主要静态类指向问题并显示此按摩
0x0040f9ef in __static_initialization_and_destruction_0 (__initialize_p=1, __priority=65535)
这是我的代码
游戏.hpp
...
class Game
{
public:
//... static Member function
private:
static sf::RenderWindow _mainWindow;
//..... static member variable
};
游戏.cpp
... function declaration
sf::RenderWindow Game::_mainWindow; //Runtime Error happen here
//and the other member variable declaration
请告诉我我错在哪里,谢谢
编辑:game.cpp