X=xx;Y=yy;
cout<< \ }
~A() {
cout<<\ }
};
void main() {
A *p1=new A; delete p1; p1=new A(1,2); delete p1; }
参考答案: 一、 1、A 2、B 3、A 4、B 5、B 6、C 7、C 8、D 9、B 10、B 11、B 12、C 13、C 14、D 15、D 16、D 17、D 18、B 19、C 20、C 二、
1、对象 2、对象 3、参数类型或参数个数 4、实例 5、this 6、形参 7、友元 8、继承 9、外部接口 10、析构 11、~AB() 12、局部对象、对象 三、 1、
#include
void main() { base test; test.init(3); cout< #include class line { private: int color;int startx,starty;int len; public: friend int same_color(line a,box b); void set_color(int c){color=c;} void define_line(int x,int y){startx=x;} }; int same_color(line a,box b) { if(a.color==b.color) return 1; return 0; } int main() { line L; box B; L.set_color(2); B.set_color(3); cout< int *a; int n; public: A(int nn=0):n(nn){ if(n==0)a=0; else a=new int[n]; } ~A() {delete []a;}//定义析构函数,释放动态数组空间 }; 4、 # include private: float x,y; public: loc(float x1,float y1) { x=x1; y=y1; } float getx( ){return x;} float gety( ){return y;} friend float dis(loc&,loc&); }; float dis(loc&a,loc&b) { float dx=a.x-b.x; float dy=a.y-b.y; return sqrt(dx*dx+dy*dy); } void main( ) { loc p1(3.5,4.5),p2(5.5,6.5); float d=dis(p1,p2); cout<<\ } 四、 1、 0 5 0 6 4 2、 5 10 3 3、 构造函数被调用(4,5) 构造函数被调用(1,2) 4、 Default Constructor called. Destructor called. Constructor called. Destructor called. 百度搜索“77cn”或“免费范文网”即可找到本站免费阅读全部范文。收藏本站方便下次阅读,免费范文网,提供经典小说综合文库C++清考资料类和对象(4)在线全文阅读。
相关推荐: