注意:此页面搜索的是所有试题
题目内容
(许昌学院面向对象程序设计)
[分析题,4分] #include<iostream.h> class A { int a,b; public: A(int aa=0,int bb=0):a(aa),b(bb){ cout<<”Constructor!”<<a+b<<endl; }}; void main(){ A x, y(2,3), z(y); }
参考答案