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

C#编程

开发平台:

Visual C++

  1. //=====================================
  2. // f0906.cpp
  3. // 不正确的初始化尝试
  4. //=====================================
  5. #include<iostream>
  6. using namespace std;
  7. //-------------------------------------
  8. class StudentID{
  9.   int value;
  10. public:
  11.   StudentID(int id=0){
  12.     value = id;
  13.     cout<<"Assigning student id "<<value<<"n";
  14.   }
  15. };//-----------------------------------
  16. class Student{
  17.   string name;
  18.   StudentID id;
  19. public:
  20.   Student(string n = "noName", int ssID=0){
  21.     cout <<"Constructing student " + n + "n";
  22.     name = n;
  23.     StudentID id(ssID);
  24.   }
  25. };//-----------------------------------
  26. int main(){
  27.   Student s("Randy", 58);
  28. }//====================================
  29.