欢迎来到天天文库
浏览记录
ID:38692294
大小:58.50 KB
页数:5页
时间:2019-06-17
《书面作业_8(参考答案)》由会员上传分享,免费在线阅读,更多相关内容在教育资源-天天文库。
1、书面作业_9(参考答案)1、定义一个图书类(Book),该类的数据成员有:书名(bookname)、作者(authors)、页数(pages)、出版社(publishing_house)、价格(price),要求如下:(1)图书的所有属性都是私有的,数据成员的类型根据实际情况来确定,如果是字符串,请使用C++标准库中的string类;(2)给该类添加相应的getXxx、setXxx函数来获取、设置该类的私有成员;(3)给该类添加适当的构造函数、析构函数来初始化、清理对象;(4)在main()函数定义两本图书:l《C++程序设计》,谭浩强编著,485页,清华大学出版社,36.00元l《吹牛大王历
2、险记》,拉斯伯等编著,149页,天津人民出版社,12.80元然后将这两个对象的成员信息输出到屏幕上。//book.h#include#includeusingnamespacestd;classBook{public:Book(stringbn,stringau,intn,stringph,doublepc);~Book();voidsetBookName(stringbn);voidsetAuthors(stringau);voidsetPages(intn);voidsetPublishing_House(stringph);voidsetPrice(d
3、oublepc);stringgetBookName();stringgetAuthors();intgetPages();stringgetPublishing_House();doublegetPrice();voidprint();private:stringbookname;stringauthors;intpages;stringpublishing_house;doubleprice;};Book::Book(stringbn,stringau,intn,stringph,doublepc){bookname=bn;authors=au;pages=n;publishing_hou
4、se=ph;price=pc;cout<<"对象被创建!"<5、gBook::getBookName(){returnbookname;}stringBook::getAuthors(){returnauthors;}intBook::getPages(){returnpages;}stringBook::getPublishing_House(){returnpublishing_house;}doubleBook::getPrice(){returnprice;}voidBook::print(){cout<<"书名:"<6、l;cout<<"出版社:"<7、)、宽(width)、高(height)等私有数据成员,get_length()、get_width()、get_height()、volume()(计算体积)等公有成员函数;(2)ColorBox类:以公有方式继承Box类的上述成员再增加自己的成员:颜色(Color)为私有数据成员、get_color()为公有成员函数。#includeusingnamespacestd;cl
5、gBook::getBookName(){returnbookname;}stringBook::getAuthors(){returnauthors;}intBook::getPages(){returnpages;}stringBook::getPublishing_House(){returnpublishing_house;}doubleBook::getPrice(){returnprice;}voidBook::print(){cout<<"书名:"<6、l;cout<<"出版社:"<7、)、宽(width)、高(height)等私有数据成员,get_length()、get_width()、get_height()、volume()(计算体积)等公有成员函数;(2)ColorBox类:以公有方式继承Box类的上述成员再增加自己的成员:颜色(Color)为私有数据成员、get_color()为公有成员函数。#includeusingnamespacestd;cl
6、l;cout<<"出版社:"<7、)、宽(width)、高(height)等私有数据成员,get_length()、get_width()、get_height()、volume()(计算体积)等公有成员函数;(2)ColorBox类:以公有方式继承Box类的上述成员再增加自己的成员:颜色(Color)为私有数据成员、get_color()为公有成员函数。#includeusingnamespacestd;cl
7、)、宽(width)、高(height)等私有数据成员,get_length()、get_width()、get_height()、volume()(计算体积)等公有成员函数;(2)ColorBox类:以公有方式继承Box类的上述成员再增加自己的成员:颜色(Color)为私有数据成员、get_color()为公有成员函数。#includeusingnamespacestd;cl
此文档下载收益归作者所有