?? token.java~10~
字號:
package lexicalanalyzer2;/** * Title: Token * Description: Create the token,include token,type,line and position * Copyright: Copyright (c) 2004 15th,Oct * Company: B02251132 * @author: ZengBo Huang * @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 + -