摘要: /*代码如下*/ 1 #ifndef CLOCK_H 2 #define CLOCK_H 3 4 class Clock { 5 public: 6 Clock(int h=0,int m=0, int s=0); 7 Clock& operator++(); // 前置++,形如++t 8 Clo 阅读全文
posted @ 2019-05-10 09:04 爱因斯坦PLUS 阅读(232) 评论(0) 推荐(0) 编辑