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

C#编程

开发平台:

Visual C++

  1. //=====================================
  2. // f0905.cpp
  3. // 对象成员的默认构造
  4. //=====================================
  5. #include<iostream>
  6. using namespace std;
  7. //-------------------------------------
  8. class StudentID{
  9.   int value;
  10. public:
  11.   StudentID(){
  12.     static int nextStudentID = 0;
  13.     value = ++nextStudentID;
  14.     cout<<"Assigning student id "<<value<<"n";
  15.   }
  16. };//-----------------------------------
  17. class Student{
  18.   string name;
  19.   StudentID id;
  20. public:
  21.   Student(string n = "noName"){
  22.     cout <<"Constructing student " + n + "n";
  23.     name = n;
  24.   }
  25. };//-----------------------------------
  26. int main(){
  27.   Student s("Randy");
  28. }//====================================
  29.