time.h

来自「这个程序是对电梯的模拟」· C头文件 代码 · 共 29 行

H
29
字号
// Time.h: interface for the Time class.
//
//////////////////////////////////////////////////////////////////////

#if !defined(AFX_TIME_H__30703D62_AE0D_44EC_87E2_51302AF696B8__INCLUDED_)
#define AFX_TIME_H__30703D62_AE0D_44EC_87E2_51302AF696B8__INCLUDED_

#if _MSC_VER > 1000
#pragma once
#endif // _MSC_VER > 1000
#include <time.h>

class Time  
{
public: 
	Time();
	void CurTime();
	int operator < (Time & t2);
    bool operator > (Time & t2);
	virtual ~Time();

private:
	int sec;
	int min;
	int hour;
};

#endif // !defined(AFX_TIME_H__30703D62_AE0D_44EC_87E2_51302AF696B8__INCLUDED_)

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?