C++清考资料类和对象(4)

2019-03-28 13:23

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 class base { int X; public: void init(int y){X=y+7;}//为X置值 int Getnum() {return X;}// 取X值 };

void main() { base test; test.init(3); cout<

#include class line; class box { private: int color; int upx,upy; int lowx,lowy; public: friend int same_color(line a,box b); void set_color(int c){color=c;} void define_box(int x1,int y1,int x2,int y2){upx=x1;upy=y1;} };

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 # include class loc{

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.


C++清考资料类和对象(4).doc 将本文的Word文档下载到电脑 下载失败或者文档不完整,请联系客服人员解决!

下一篇:三相异步电动机单向连续运行的PLC控制(教案)

相关阅读
本类排行
× 注册会员免费下载(下载后可以自由复制和排版)

马上注册会员

注:下载文档有可能“只有目录或者内容不全”等情况,请下载之前注意辨别,如果您已付费且无法下载或内容有问题,请联系我们协助你处理。
微信: QQ: