static成员在类中声明,在类外定义,像下面这样就行了:class Exp{ public: static int Structure[3][3];};int Exp::Structure[3][3] = {0, 1, 0, 1, 1, 1, 0, 1, 0}; //这一行最好放在.cpp文件中
类不是有自己默认的构造函数嘛?