f0907.cpp
资源名称:c.rar [点击查看]
上传用户:puke2000
上传日期:2022-07-25
资源大小:912k
文件大小:1k
源码类别:
C#编程
开发平台:
Visual C++
- //=====================================
- // f0907.cpp
- // initialization of class members
- //=====================================
- #include<iostream>
- using namespace std;
- //-------------------------------------
- class StudentID{
- int value;
- public:
- StudentID(int id=0){
- value=id;
- cout <<"Assigning student id " <<value <<endl;
- }
- };//-----------------------------------
- class Student{
- string name;
- StudentID id;
- public:
- Student(string n="no name", int ssID=0):id(ssID),name(n){
- cout<<"Constructing student "<<n<<"n";
- }
- };//-----------------------------------
- int main(){
- Student s("Randy", 98);
- Student t("Jenny");
- }//====================================