📄 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 + -