单项选择题

指出下面程序段中的错误的是 ______。
class X//A
int a,b;
public:
X(int aa,int bb) a=aa; b=bb;//B

X x(2,3);//C
X y(4); //D