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