首页 > 其他 > 详细

初探运算符重载------(减号)

时间:2018-08-24 00:00:31      阅读:253      评论:0      收藏:0      [点我收藏+]
可以参考:https://blog.csdn.net/zgl_dm/article/details/1767201

本例中 t1- t2,t2可以看做Time成员函数中的形参。

技术分享图片
 1 #include<iostrean>
 2 
 3 using namespace std;
 4 
 5 int main(int argc, char* argv[])
 6 {
 7     Time t1(1, 1);
 8     Time t2(2, 0);
 9     Time t = t1- t2;
10 
11     cout << t.h <<"  "<<t.min<<endl;
12     system("PAUSE");
13     return 0;
14 }
main.c
技术分享图片
 1 #ifndef TIME_H
 2 #define TIME_H
 3 
 4 class Time
 5 {
 6     public:
 7     Time(int h, int min)
 8     {
 9         this->h=h;
10         this->min=min;
11     }
12     ~Time(){};
13     int h;
14     int min;
15     
16     //在类的内部进行运算符重载
17     Time operator-(const Time &t)const
18     {
19         Time sub(0,0);
20         sub.h = h - t.h;
21         sub.min = min - t.min;
22         return sub;
23     }
24 }
25 
26 #endif
Time.h

 

初探运算符重载------(减号)

原文:https://www.cnblogs.com/wangbin-heng/p/9527135.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!