有类定义: class A{ public: int getx()const {return vx;} int gety(){return vy;} private: int vx,vy; }; 那么下列构造函数可以在这个类中正常工作的是:
A.
A(int vx,int vy):vx(vx),vy(vy){ }
B.
A(int x=0,int y=0):vx(x),vy(y){ }
C.
A() { vx=2; vy=3; return ; }
D.
A(int x,int y){ int x,y; vx=x; vy=y; }