C++_类的成员_二维数组初始化

2024-11-25 22:35:44
推荐回答(2个)
回答1:

static成员在类中声明,在类外定义,像下面这样就行了:
class Exp
{
public:
static int Structure[3][3];
};

int Exp::Structure[3][3] = {0, 1, 0, 1, 1, 1, 0, 1, 0}; //这一行最好放在.cpp文件中

回答2:

类不是有自己默认的构造函数嘛?