f0905.cpp
来自「it is a usefull thing」· C++ 代码 · 共 30 行
CPP
30 行
//=====================================
// 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 + =
减小字号Ctrl + -
显示快捷键?