📄 integer.h
字号:
/* * * * */#ifndef __INTEGER_H#define __INTEGER_H#include "item.h"class Integer: public Item{ private: long value; public: Integer(long i); ~Integer(); // Virtual Methods Item *Clone(); long ToInteger() const; double ToDouble() const; std::string ToString() const; // Accesor methods long GetValue() const; void SetValue(long i);};#endif
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -