📄 f0905.cpp
字号:
//=====================================
// f0905.cpp
// 对象成员的默认构造
//=====================================
#include<iostream>
using namespace std;
//-------------------------------------
class StudentID{
int value;
public:
StudentID(){
static int nextStudentID = 0;
value = ++nextStudentID;
cout<<"Assigning student id "<<value<<"\n";
}
};//-----------------------------------
class Student{
string name;
StudentID id;
public:
Student(string n = "noName"){
cout <<"Constructing student " + n + "\n";
name = n;
}
};//-----------------------------------
int main(){
Student s("Randy");
}//====================================
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -