📄 word.java
字号:
package hl;
public class Word {
private String word;
private String attribute;
public Word() {
}
public Word(String word,String attribute){
this.word = word;
this.attribute = attribute;
}
public String getWord() {
return word;
}
public void setWord(String word) {
this.word = word;
}
public String getAttribute() {
return attribute;
}
public void setAttribute(String attribute) {
this.attribute = attribute;
}
public String toString(){
return this.word+"/"+this.attribute;
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -