77范文网 - 专业文章范例文档资料分享平台

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

来源:网络收集 时间:2019-03-28 下载这篇文档 手机版
说明:文章内容仅供预览,部分内容可能不全,需要完整文档或者需要复制内容,请下载word后使用。下载word有问题请添加微信号:或QQ: 处理(尽可能给您提供完整文档),感谢您的支持与谅解。点击这里给我发消息

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.

百度搜索“77cn”或“免费范文网”即可找到本站免费阅读全部范文。收藏本站方便下次阅读,免费范文网,提供经典小说综合文库C++清考资料类和对象(4)在线全文阅读。

C++清考资料类和对象(4).doc 将本文的Word文档下载到电脑,方便复制、编辑、收藏和打印 下载失败或者文档不完整,请联系客服人员解决!
本文链接:https://www.77cn.com.cn/wenku/zonghe/550225.html(转载请注明文章来源)
Copyright © 2008-2022 免费范文网 版权所有
声明 :本网站尊重并保护知识产权,根据《信息网络传播权保护条例》,如果我们转载的作品侵犯了您的权利,请在一个月内通知我们,我们会及时删除。
客服QQ: 邮箱:tiandhx2@hotmail.com
苏ICP备16052595号-18
× 注册会员免费下载(下载后可以自由复制和排版)
注册会员下载
全站内容免费自由复制
注册会员下载
全站内容免费自由复制
注:下载文档有可能“只有目录或者内容不全”等情况,请下载之前注意辨别,如果您已付费且无法下载或内容有问题,请联系我们协助你处理。
微信: QQ: