?? caccount.h
字號(hào):
#if !defined(_CACCOUNT_H)
#define _CACCOUNT_H
#include "CDate.h"
#include <string>
using namespace std;
/*帳戶(hù)注冊(cè)信息類(lèi)*/
class CAccount
{
public:
CAccount();
int Getid(void);
void Setid(int id);
string Getname(void);
void Setname(string name);
char Getsex(void);
void Setsex(char sex);
string Getmobilephone(void);
void Setmobilephone(string mobilephone);
CDate Getbirthday(void);
void Setbirthday(CDate birthday);
double Getmoney(void);
void Setmoney(double money);
bool Getisstop(void);
void Setisstop(bool isstop);
private:
bool m_isstop;//是否停用
char m_sex;//性別
int m_id;//編號(hào)
double m_money;//余額
string m_name;//名字
string m_mobilephone;//電話
CDate m_birthday;//生日
};
#endif;
?? 快捷鍵說(shuō)明
復(fù)制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號(hào)
Ctrl + =
減小字號(hào)
Ctrl + -