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

📄 lexoutput.java

📁 基于c0文法写的生成p-code的编译器
💻 JAVA
字号:
/**
 * @author lilac
 */

public class Lexoutput {
    //   define variables
    public int type;
    public String word;
////    constructor
    public Lexoutput() {
        this.type=-1;
        this.word=null;
    }
    public Lexoutput(Lexoutput lop){
        this.type=lop.type;
        this.word=lop.word;
    }
    @Override
    public String toString(){
    	return word + '[' + type + ']';
    }
    
}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -