📄 lexoutput.java.svn-base
字号:
package cn.edu.buaa.scse.liyi.test;
/**
*
* @author liyi
*/
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 + -