Merge pull request #208 from zhkgo/patch-1

Update 重载++的时钟.cpp
This commit is contained in:
Francis 2022-04-10 16:22:50 +08:00 committed by GitHub
commit 65eb20b3c5
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

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