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

C#编程

开发平台:

Visual C++

  1. //=====================================
  2. // f0907.cpp
  3. // initialization of class members
  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 <<endl;
  14.   }
  15. };//-----------------------------------
  16. class Student{
  17.   string name;
  18.   StudentID id;
  19. public:
  20.   Student(string n="no name", int ssID=0):id(ssID),name(n){
  21.     cout<<"Constructing student "<<n<<"n";
  22.   }
  23. };//-----------------------------------
  24. int main(){
  25.   Student s("Randy", 98);
  26.   Student t("Jenny");
  27. }//====================================
  28.