c++的类体中,方法以外的区域不允许有初始化,简单类型是可以的,但是有构造函数的复杂对象则不行了,比如string对象! class A{ vector<string>v(9);//error,expected identifier before numeric constant public: void test(){} };
error C2137: empty character constant 在用swtich case语句的时候出现这样的报错! 改动一: int get(int *ws,int *lc) //建议你吧传递的内容,直接写在函数声明里改动二: ca C++问题 error C2065: 'flag' : undeclared identifier请教一下错在哪里 错的地方比较多1、main函数少了一个右大括号2、sushu函数...
vector<string>v(9); //error,expected identifier before numeric constant 1. public: void test(){} };