📄 position.h
字号:
#ifndef POSITION_H
#define POSITION_H
#include "constant.h"
//位置记录类
class Position
{
public:
int line; //行号
int col; //列号
void Reset(); //清零
void Set(int l, int c); //赋值
};
#endif
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -