c语言程序设计(郑莉第4版)课件8.ppt

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

*;*;*;*;*;*;*;*;*;*;*;*;*;#include iostream using namespace std; class Complex { //复数类定义 public: //外部接口 Complex(double r = 0.0, double i = 0.0) : real(r), imag(i) { } //构造函数 Complex operator + (const Complex c2) const; //运算符+重载成员函数 Complex operator - (const Complex c2) const; //运算符-重载成员函数 void display() const; //输出复数 private: //私有数据成员 double real; //复数实部 double imag; //复数虚部 };;Complex Complex::operator + (const Complex c2) const { //重载运算符函数实现 return Complex(real + c2.real, imag + c2.imag); //创建一个临时无名对象作为返回值 } Complex Complex::operator - (const Complex c2) const { //重载运算符函数实现 return Complex(real - c2.real, imag - c2.imag); //创建一个临时无名对象作为返回值 };void Complex::display() const { cout ( real , imag ) endl; } int main() { //主函数 Complex c1(5, 4), c2(2, 10), c3; //定义复数类的对象 cout c1 = ; c1.display(); cout c2 = ; c2.display(); c3 = c1 - c2; //使用重载运算符完成复数减法 cout c3 = c1 - c2 = ; c3.display(); c3 = c1 + c2; //使用重载运算符完成复数加法 cout c3 = c1 + c2 = ; c3.display(); return 0; };程序输出的结果为: c1 = (5, 4) c2 = (2, 10) c3 = c1 - c2 = (3, -6) c3 = c1 + c2 = (7, 14);*;*;*;#include iostream using namespace std; class Clock { //时钟类声明定义 public: //外部接口 Clock(int hour = 0, int minute = 0, int second = 0); void showTime() const; Clock operator ++ (); //前置单目运算符重载 Clock operator ++ (int);//后置单目运算符重载 private: //私有数据成员 int hour, minute, second; };;//构造函数 Clock::Clock(int hour, int minute, int second) { if(0 = hour hour 24 0 = minute minute 60 0 = second second 60) { this-hour=hour; this-minute=minute; this-second=second; } else coutTime error!endl; };//前置单目运算符重载函数 Clock Clock::operator ++ () { second++; if (second = 60) { second -= 60; minute++; if (minute = 60) { minute -= 60; hour = (hour + 1) % 24; } } return *this; };//后置单目运算符重载 Clock Clock::operator ++ (int) { //注意形参表中的整型参数 Clock old = *this; ++(*this); //调用前置“++”运算符 return old; };//其它成员函数的实现略 int main() { Clock myClock(23, 59, 59); cout First time output: ;

文档评论(0)

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

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

1亿VIP精品文档

相关文档