⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 position.h

📁 使用C++实现的Java语言子集词法、语法、语义分析器
💻 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 + -