类中无法初始化容器对象?
求助: 请看以下代码: #include <iostream> #include <vector> using namespace std; class node { public: node(int x1,int x2):x(x1),y(x2){} int x,y; vector<int> a(2); };
int main() { node a(2,3);
return 0; } 在VC6.0(已安sp6补丁)环境下编译出现以下错误: c:\program files\microsoft visual studio\myprojects\alexander\app4\app4.cpp(9) : error C2059: syntax error : 'constant' Error executing cl.exe. 这是怎么回事?