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

C#编程

开发平台:

Visual C++

  1. //**********************
  2. //**    ch12_9.cpp    **
  3. //**********************
  4. #include <string.h>
  5. class Student{
  6. public:
  7.   Student(char* pName)
  8.   {
  9.     strncpy(name,pName,sizeof(name));
  10.     name[sizeof(name)-1]='';
  11.   }
  12.   Student(){}
  13. protected:
  14.   char name[20];
  15. };
  16. void main()
  17. {
  18.   Student noName;          //ok
  19.   Student ss("Jenny");     //ok
  20. }