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

C#编程

开发平台:

Visual C++

  1. //*********************
  2. //**    student.h    **
  3. //*********************
  4. #ifndef STUDENT
  5. #define STUDENT
  6. class Student{
  7. public:
  8.   Student(char* pName ="no name");
  9.  ~Student();
  10.   static int number();     //静态成员函数
  11. protected:
  12.   static int noOfStudents;
  13.   char name[40];
  14. };
  15. #endif