?? token.java~7~
字號:
//package lexicalanalyzer2;/** * <p>Title: </p> * <p>Description: </p> * <p>Copyright: Copyright (c) 2004</p> * <p>Company: </p> * @author not attributable * @version 1.0 */public class token { private String token; private Object type; private int line,position; public token(String tk,Object tp,int ln,int pos) { token=tk; type=tp; line=ln; position=pos; } public String toString(){ String out=token+"\t"+type+"\t"+line+"\t"+position; return out; }}
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -