expr.java
来自「中山大学编译原理课程的一个实验」· Java 代码 · 共 28 行
JAVA
28 行
/* * To change this template, choose Tools | Templates * and open the template in the editor. */package symbols;/** * * @author Beeven */public class Expr extends symbol{ public Token token; public int type; Expr(){token=null;} Expr(int t) { this.tag=t; this.type=Type.Expr; token=null; } Expr(Token t) { this.tag=t.tag; token=t; this.type=Type.Expr; }}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?