📄 record.h
字号:
#ifndef _RECORD_H#define _RECORD_Hclass Record {private: unsigned int Number;public: // the default constructor Record(); // the destructor virtual ~Record(); // sets the number in the record to Num. void setNumber(unsigned int Num); // returns the number. unsigned int getNumber(); // prints the record to the standard output in the format // specified in the assignment specifications. virtual void print()=0;}; //Record#endif
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -