?? cconvert.h
字號:
#if !defined(_CCONVERT_H)
#define _CCONVERT_H
#include "CDate.h"
#include <string>
using namespace std;
/*字符串轉換為int,double,date類型*/
class CConvert
{
public:
static int StrToInt(string& str);
static double StrToDouble(string& str);
static CDate StrToDate(string& str);
static string DataToStr(CDate &date);//日期轉化為字符串
};
#endif;
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -