cconvert.h

来自「软件的名称:AA制用餐管理系统 软件的功能:管理消费中产生的费用」· C头文件 代码 · 共 16 行

H
16
字号
#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 + =
减小字号Ctrl + -
显示快捷键?