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

📄 person.h

📁 Since the field of object oriented programming is probably new to you, you will find that there is a
💻 H
字号:
                                 // 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 + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -