master.h
资源名称:c.rar [点击查看]
上传用户:puke2000
上传日期:2022-07-25
资源大小:912k
文件大小:0k
源码类别:

C#编程

开发平台:

Visual C++

  1. //********************
  2. //**    master.h    **
  3. //********************
  4. #include "student.h"
  5. #include <iostream.h>
  6. //硕士生类
  7. class MasterStudent: public Student{
  8. public:
  9.   MasterStudent(char* pS, unsigned num, float g, char t)
  10.     :Student(pS,num,g),type(t){}
  11.   void display(ostream& out);
  12. protected:
  13.   char type;
  14. };