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

C#编程

开发平台:

Visual C++

  1. //**********************
  2. //**    ch12_4.cpp    **
  3. //**********************
  4. #include <iostream.h>
  5. #include <string.h>
  6. class Student{
  7. public:
  8.   Student(char* pName)
  9.   {
  10.     cout <<"constructing student " <<pName <<endl;     strncpy(name,pName,sizeof(name));
  11.     name[sizeof(name)-1]='';
  12.   }
  13.   ~Student()
  14.   {
  15.     cout <<"destructing " <<name <<endl;
  16.   }
  17. //其他公共成员