?? doctor.h
字號:
//=====================================
// doctor.h
//=====================================
#ifndef HEADER_DOCTOR
#define HEADER_DOCTOR
//-------------------------------------
#include"graduatestudent.h"
#include<iostream>
//-------------------------------------
class Doctor : public GraduateStudent{
public:
Doctor(string pName="noName"):GraduateStudent(pName){ type = DOCTOR; }
void calcTuition(){std::cout<<"Doctor tuition calculation.\n";}
};//-----------------------------------
#endif // HEADER_DOCTOR
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -