找回密码
 注册
搜索
热搜: 回贴
  • 前程无忧官网首页 有什么好的平台可以
  • 最新的销售平台 互联网营销的平台有哪
  • 制作网页的基本流程 网页制作和网页设
  • 【帝国CMS】输出带序号的列表(数字排
  • 网站建设公司 三一,中联,极东泵车的
  • 织梦 建站 织梦网站模版后台怎么更改
  • 云服务官网 哪些网站有免费的简历模板
  • 如何建网站要什么条件 建网站要用什么
  • 吉林市移动公司电话 吉林省退休人员网
  • 设计类毕业论文 网站设计与实现毕业论
查看: 959|回复: 2

[求助]如何重载运算符?

[复制链接]
发表于 2009-11-6 00:27:18 | 显示全部楼层 |阅读模式 IP:江苏扬州
重载运算符">","<","<<"和">>",可以比较两个复数,以及输入和输出复数.
请问这个程序如何编?谢谢了?
发表于 2009-11-6 00:27:20 | 显示全部楼层 IP:江苏扬州
  1. Rational operator+ (const Rational &r1,const Rational &r2){
  2. return r1.Add(r2);
  3. }
  4. Rational operator- (const Rational &r1,const Rational &r2){
  5. return r1.Subtract(r2);
  6. }
  7. Rational operator* (const Rational &r1,const Rational &r2){
  8. return r1.Multiply(r2);
  9. }
  10. Rational operator/ (const Rational &r1,const Rational &r2){
  11. return r1.Divide(r2);
  12. }
  13. //stream operators
  14. ostream& operator<< (ostream &sout,const Rational &r){
  15. r.Insert(sout);
  16. return sout;
  17. }
  18. istream& operator>> (istream &sin ,Rational &r){
  19. r.Extract(sin);
  20. return sin;
  21. }
  22. //bool operator
  23. bool operator== (const Rational &r1,const Rational &r2){
  24. return r1.Equal(r2);
  25. }
  26. bool operator< (const Rational &r1,const Rational &r2){
  27. return r1.LessThan(r2);
  28. }
  29. bool operator<= (const Rational &r1,const Rational &r2){
  30. if (r1.LessThan(r2) || r1.Equal(r2))
  31. return true;
  32. else
  33. return false;
  34. }
  35. bool operator> (const Rational &r1,const Rational &r2){
  36. if (!r1.LessThan(r2))
  37. return true;
  38. else
  39. return false;
  40. }
  41. bool operator>= (const Rational &r1,const Rational &r2){
  42. if (!r1.LessThan(r2) || r1.Equal(r2))
  43. return true;
  44. else
  45. return false;
  46. }
复制代码


这是分数的一些重载,你看看吧,道理一样的!
回复

使用道具 举报

发表于 2009-11-6 00:27:22 | 显示全部楼层 IP:江苏扬州
谢谢你了!
回复

使用道具 举报

您需要登录后才可以回帖 登录 | 注册

本版积分规则

QQ|小黑屋|最新主题|手机版|微赢网络技术论坛 ( 苏ICP备08020429号 )

GMT+8, 2024-11-6 08:33 , Processed in 0.759455 second(s), 13 queries , Gzip On, MemCache On.

Powered by Discuz! X3.5

© 2001-2023 Discuz! Team.

快速回复 返回顶部 返回列表