?? cmymoney.h
字號:
#ifndef _CMYMONEY_H
#define _CMYMONEY_H
class CMyMoney
{
public:
CMyMoney();
CMyMoney(int _id,string _date,float _money,string _comment);
~CMyMoney();
int GetID();
float GetMoney();
string GetDate();
string GetComment();
void SetID(int _id);
void SetMoney(float _money);
void SetDate(string _date);
void SetComment(string _comment);
private:
int id;
float money;
string date;
string comment;
};
#endif
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -