person.h

来自「Since the field of object oriented progr」· C头文件 代码 · 共 15 行

H
15
字号
                                 // Chapter 11 - Program 1 - PERSON.H
#ifndef PERSON_H
#define PERSON_H

class person 
{
protected:    // Make these variables available to the subclasses
   char name[25];
   int salary;
public:
   virtual void display(void);
};

#endif

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?