欢迎来到天天文库
浏览记录
ID:12066188
大小:42.50 KB
页数:4页
时间:2018-07-15
《实验3 类的定义、对象的建立与使用》由会员上传分享,免费在线阅读,更多相关内容在行业资料-天天文库。
1、实验报告_实验3类的定义、对象的建立与使用(学生学号_姓名)实验目的:1、理解C++中class与struct的区别;2、掌握类的定义以及成员函数的定义方法;3、掌握对象的定义和对象成员的访问方式;4、熟悉this指针的基本用法。实验内容二、((基础题)请按照下列要求定义一个Clock时钟类,并创建对象,再调用相应方法:程序代码://日期类的应用#includeusingnamespacestd;classClock//定义日期类{public://定义公有成员函数voidsetTime(inth,
2、intm,ints);voidshowTime();private://定义私有数据成员inthour;intminute;intsecond;};//类定义体的结束//类实现部分voidClock::setTime(inth,intm,ints){hour=h;minute=m;second=s;}voidClock::showTime(){cout<<"设置时间为"<3、0);now.showTime();return0;}三、(基础题)请按要求,编写程序(请将类的定义、成员函数的实现、类的使用分开):rect.h代码:#includeusingnamespacestd;classRect{public:doublegetLength(void);doublegetWidth(void);doublegetPerimeter(void);doublegetArea(void);voidsetLength(doublel);voidsetWidth(doublew);4、voiddisplay(void);private:doublelength,width;};rect.cpp代码:#include"rect.h"voidRect::setLength(doublel){length=l;}voidRect::setWidth(doublew){width=w;}doubleRect::getLength(){returnlength;}doubleRect::getWidth(){returnwidth;}doubleRect::getArea(){return(length*wi5、dth);}doubleRect::getPerimeter(){return(2*(length+width));}voidRect::display(){cout<6、rect.display();}
3、0);now.showTime();return0;}三、(基础题)请按要求,编写程序(请将类的定义、成员函数的实现、类的使用分开):rect.h代码:#includeusingnamespacestd;classRect{public:doublegetLength(void);doublegetWidth(void);doublegetPerimeter(void);doublegetArea(void);voidsetLength(doublel);voidsetWidth(doublew);
4、voiddisplay(void);private:doublelength,width;};rect.cpp代码:#include"rect.h"voidRect::setLength(doublel){length=l;}voidRect::setWidth(doublew){width=w;}doubleRect::getLength(){returnlength;}doubleRect::getWidth(){returnwidth;}doubleRect::getArea(){return(length*wi
5、dth);}doubleRect::getPerimeter(){return(2*(length+width));}voidRect::display(){cout<6、rect.display();}
6、rect.display();}
此文档下载收益归作者所有