Update 重载++的时钟.cpp

修复了++的时候判断时使用if(second=60)的bug,增加了后缀形式的++重载,完善了++的返回值。
This commit is contained in:
zhkgo 2022-03-02 14:05:51 +08:00 committed by GitHub
parent 696b01a42c
commit 75a7691610
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -1,5 +1,5 @@
/* /*
++++1使 ++++1使
*/ */
#include<iostream> #include<iostream>
using namespace std; using namespace std;
@ -10,19 +10,24 @@ class Time{
minute = m; minute = m;
second = s; second = s;
} }
void operator++(); Time operator++();
Time operator++(int);
void showTime(){ void showTime(){
cout<<"当前时间为:"<<hour<<":"<<minute<<":"<<second<<endl; cout<<"当前时间为:"<<hour<<":"<<minute<<":"<<second<<endl;
} }
private: private:
int hour,minute,second; int hour,minute,second;
}; };
Time Time::operator++(int n){
void Time::operator++(){ Time tmp=*this;
++(*this);
return tmp;
}
Time Time::operator++(){
++second; ++second;
if(second=60){ if(second==60){
second=0; second=0;
++minute; ++minute;
if(minute==60){ if(minute==60){
@ -33,12 +38,15 @@ void Time::operator++(){
} }
} }
} }
return *this;
} }
int main(int argc, char const *argv[]) int main(int argc, char const *argv[])
{ {
Time t(23,59,59); Time t(23,59,59);
++t; ++t;
t.showTime();
(t++).showTime();
t.showTime(); t.showTime();
system("pause"); system("pause");
return 0; return 0;