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

📄 cconvert.h

📁 软件的名称:AA制用餐管理系统 软件的功能:管理消费中产生的费用
💻 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 + -