我正在使用交叉编译器。我的代码是:
class WindowsTimer{
public:
WindowsTimer(){
_frequency.QuadPart = 0ull;
}
private:
static LARGE_INTEGER _frequency;
};
我收到以下错误:
未定义对WindowsTimer :: _ frequency的引用
我也尝试将其更改为
LARGE_INTEGER _frequency.QuadPart = 0ull;
要么
static LARGE_INTEGER _frequency.QuadPart = 0ull;
但我仍然遇到错误。
谁知道为什么?