无法在C ++头文件中创建数组?

时间:2018-11-30 18:05:48

标签: c++ visual-studio sdl

我正在使用SDL和InputPC.h文件开发一个游戏,我试图创建一个bool [] myarray来注册键的状态,这是因为我必须使用这种抽象和多平台的方式键的“询问”。

Class InputPC { 
public: 
InputPC(); 
~InputPC(); 
static void Tick();

static bool a;
static bool w;
static bool s;
static bool d;
static bool[] myarray;
static bool getA();
static bool getW();
static bool getS();
static bool getD();
}; 

myarray行始终为红色,(我尝试不使用静态)

1 个答案:

答案 0 :(得分:1)

我这样声明我的数组
    布尔输入[10];