📄 person.h
字号:
#include "salary.h"
class person :public salary
{
public:
person(unsigned no,char * nam,float b,float a,float pst,float s,float h,float tra,float rnt,float save,float fe);
unsigned emplNO();
char emplName();
void display();
static person *& First();
person * Next();
person * setNext(person *);
private:
unsigned number; //职工编号
char name[10]; //姓名
protected:
static person *pFirst;
static int count;
person *pNext;
};
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -