网站大量收购闲置独家精品文档,联系QQ:2885784924

c++4类与对象教程.ppt

  1. 1、本文档共96页,可阅读全部内容。
  2. 2、有哪些信誉好的足球投注网站(book118)网站文档一经付费(服务费),不意味着购买了该文档的版权,仅供个人/单位学习、研究之用,不得用于商业用途,未经授权,严禁复制、发行、汇编、翻译或者网络传播等,侵权必究。
  3. 3、本站所有内容均由合作方或网友上传,本站不对文档的完整性、权威性及其观点立场正确性做任何保证或承诺!文档内容仅供研究参考,付费前请自行鉴别。如您付费,意味着您自己接受本站规则且自行承担风险,本站不退款、不进行额外附加服务;查看《如何避免下载的几个坑》。如果您已付费下载过本站文档,您可以点击 这里二次下载
  4. 4、如文档侵犯商业秘密、侵犯著作权、侵犯人身权等,请点击“版权申诉”(推荐),也可以打举报电话:400-050-0827(电话支持时间:9:00-18:30)。
查看更多
c4类与对象教程

第四章 类与对象;*;*;*;*;*;*;*;*;*;*;*;*;*;*;*;*;*;void Clock::setTime(int newH, int newM, int newS) { hour = newH; minute = newM; second = newS; } void Clock::showTime() { cout hour : minute : second; };*;*;*;*;*;inline void Point:: init(int initX,int initY) { x = initX; y = initY; } inline int Point::getX() { return x; } inline int Point::GetY() { return y; };*;*;*;*;*;构造函数的实现: Clock::Clock(int newH, int newM, int newS) { hour = newH; minute = newM; second = newS; } 建立对象时构造函数的作用: int main() { Clock c(0,0,0); //隐含调用构造函数,将初始值作为实参。 c.showTime(); return 0; };*;*;Point::Point (Point p) { x = p.x; y = p.y; cout Calling the copy constructor endl; };*;*;*;*;*;*;Point::Point(int xx,int yy) { x = xx; y = yy; } Point::~Point() { } //...其他函数的实现略;*;#include iostream using namespace std; const float PI = 3.141593; //给出p的值 const float FENCE_PRICE = 35; //栅栏的单价 const float CONCRETE_PRICE = 20;//过道水泥单价 class Circle { //声明定义类Circle 及其数据和方法 public: //外部接口 Circle(float r); //构造函数 float circumference(); //计算圆的周长 float area(); //计算圆的面积 private: //私有数据成员 float radius; //圆半径 };;//类的实现 //构造函数初始化数据成员radius Circle::Circle(float r) { radius = r; } //计算圆的周长 float Circle::circumference() { return 2 * PI * radius; } //计算圆的面积 float Circle::area() { return PI * radius * radius; };int main () { float radius; cout Enter the radius of the pool: ; // 提示用户输入半径 cin radius; Circle pool(radius); //游泳池边界 Circle poolRim(radius + 3); //栅栏 //计算栅栏造价并输出 float fenceCost = poolRim.circumference() * FENCE_PRICE; cout Fencing Cost is $ fenceCost endl;; //计算过道造价并输出 float concreteCost = (poolRim.area() - pool.area()) * CONCRETE_PRICE; cout Concrete Cost is $ concreteCost endl; return 0; } 运行结?? Enter the radius of the pool: 10 Fencing Cost is $2858.85 Concrete Cost is $4335.4;*;*;class Line { private: Point p1, p2; //线段的两个端点 public: Line(Point a, Point b); //构造函数 void draw(void); //画出线段 }; //...函

文档评论(0)

dajuhyy + 关注
实名认证
内容提供者

该用户很懒,什么也没介绍

1亿VIP精品文档

相关文档