⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 time.h

📁 这个程序是对电梯的模拟
💻 H
字号:
// 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 + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -