欢迎来到天天文库
浏览记录
ID:57098759
大小:105.50 KB
页数:24页
时间:2020-08-02
《北邮C++实验 实验六.doc》由会员上传分享,免费在线阅读,更多相关内容在教育资源-天天文库。
1、7.3实验题一、基础题1.标出下列程序中的错误classCSample{inta=2.5;(A)实际赋值与定义的类型不符,数据成员不能在类中作初始化CSample();(B)public:CSample(intval);(C)~CSample();};(D)2.在下列程序的填空中填上适当的语句,完成立方体体积的计算,并按图7-1的样式输出结果.要求:(1)对有注释标记的语句进行功能注释。(2)建立一个头文件和测试类文件,上机调试并输出下列结果。程序如下:#includeusingnamespacestd;classcube{public:cube();//定义一个结
2、构函数~cube();//定义一个析构函数intvolume();//定义一个成员函数private:intheight,width,depth;//定义三个数据成员};cube::cube(){height=10;width=8;depth=10;cout<<"Constructorcalled."<3、<usingnamespacestd;classCCounter{intvalue;public:CCountr(){cout<<"CCounterConstructor1"<4、l;}};classCExample{intvalue;public:CCountercar;CExample(){cout<<"CExampleConstructor1"<5、);}先调用CExample的构造函数CExample()然后调用CExample的构造函数CExample(intval)然后调用CExample的析构函数~CExample()最后调用CCounter的析构函数~CCounter()改为#includeusingnamespacestd;classCCounter{intvalue;public:voidCCountr(){cout<<"CCounterConstructor1"<6、dl;value=val;}~CCounter(){cout<<"CCounterDestructor"<7、<usingnamespacestd;classPoint{protected:intx;public:intGetx(){returnx;}intY;voidinit(){x=a;Y=b;}intGety(){r
3、<usingnamespacestd;classCCounter{intvalue;public:CCountr(){cout<<"CCounterConstructor1"<4、l;}};classCExample{intvalue;public:CCountercar;CExample(){cout<<"CExampleConstructor1"<5、);}先调用CExample的构造函数CExample()然后调用CExample的构造函数CExample(intval)然后调用CExample的析构函数~CExample()最后调用CCounter的析构函数~CCounter()改为#includeusingnamespacestd;classCCounter{intvalue;public:voidCCountr(){cout<<"CCounterConstructor1"<6、dl;value=val;}~CCounter(){cout<<"CCounterDestructor"<7、<usingnamespacestd;classPoint{protected:intx;public:intGetx(){returnx;}intY;voidinit(){x=a;Y=b;}intGety(){r
4、l;}};classCExample{intvalue;public:CCountercar;CExample(){cout<<"CExampleConstructor1"<5、);}先调用CExample的构造函数CExample()然后调用CExample的构造函数CExample(intval)然后调用CExample的析构函数~CExample()最后调用CCounter的析构函数~CCounter()改为#includeusingnamespacestd;classCCounter{intvalue;public:voidCCountr(){cout<<"CCounterConstructor1"<6、dl;value=val;}~CCounter(){cout<<"CCounterDestructor"<7、<usingnamespacestd;classPoint{protected:intx;public:intGetx(){returnx;}intY;voidinit(){x=a;Y=b;}intGety(){r
5、);}先调用CExample的构造函数CExample()然后调用CExample的构造函数CExample(intval)然后调用CExample的析构函数~CExample()最后调用CCounter的析构函数~CCounter()改为#includeusingnamespacestd;classCCounter{intvalue;public:voidCCountr(){cout<<"CCounterConstructor1"<6、dl;value=val;}~CCounter(){cout<<"CCounterDestructor"<7、<usingnamespacestd;classPoint{protected:intx;public:intGetx(){returnx;}intY;voidinit(){x=a;Y=b;}intGety(){r
6、dl;value=val;}~CCounter(){cout<<"CCounterDestructor"<7、<usingnamespacestd;classPoint{protected:intx;public:intGetx(){returnx;}intY;voidinit(){x=a;Y=b;}intGety(){r
7、<usingnamespacestd;classPoint{protected:intx;public:intGetx(){returnx;}intY;voidinit(){x=a;Y=b;}intGety(){r
此文档下载收益归作者所有