📄 mytime.h
字号:
// mytime.h -- Time class with friends
#ifndef MYTIME_H_
#define MYTIME_H_
#include <iostream>
class Time
{
private:
int hours;
int minutes;
public:
Time();
Time( int h, int m = 0 );
void AddMin( int m );
void AddHr ( int h );
void Reset ( int h = 0, int m = 0 );
friend Time operator + ( const Time & t1, const Time & t2 );// 加const后不行了
friend Time operator - ( const Time & t1, const Time & t2 );
friend Time operator * ( const Time & t, double n );
friend Time operator * ( double n , const Time & t );
friend std::ostream & operator << ( std::ostream & os, const Time & t );
};
#endif
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -