?? date1.h
字號:
#ifndef __DATE1_H__#define __DATE1_H__#include <vector>#include <string>using namespace std;class CDate1 {public: CDate1(const char* szYYMMDDHH24MI1, const char* szYYMMDDHH24MI2); virtual ~CDate1(); bool Calculate(); bool isLeap(int year); int GetCount(); string GetAt(int index); void Add(const char* sz);private: char m_szDate1[20]; char m_szDate2[20]; vector<string> m_nList;};#endif
?? 快捷鍵說明
復(fù)制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -