📄 lexoutput.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 + -