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

C#编程

开发平台:

Visual C++

  1. //**********************
  2. //**    ch12_5.cpp    **
  3. //**********************
  4. #include <iostream.h>
  5. #include <string.h>
  6. class Student{
  7. public:
  8.   Student(char* pName, int xHours, float xgpa)
  9.   {
  10.     cout <<"constructing student " <<pName <<endl;     strncpy(name,pName,sizeof(name));
  11.     name[sizeof(name)-1]='';
  12.     semesHours=xHours;
  13.     gpa=xgpa;
  14.   }
  15.   ~Student()
  16.   {
  17.     cout <<"destructing " <<name <<endl;
  18.   }
  19. //其他公共成员
  20. protected:
  21.   char name[20];
  22.   int semesHours;
  23.   float gpa;
  24. };
  25. void main()
  26. {
  27.   Student ss("Jenny",22,3.5);
  28.   //...
  29. }