?? word.java
字號(hào):
package clientport;
public class word {
String WordName;
String Wordtype;
String Wordmeanse;
String Worddegree;
int type; //表示該單詞被操作的狀態(tài),如為空則沒有操作狀態(tài)
public word(String st1,String st2,String st3,String st4) {
WordName = st1;
Wordtype = st2;
Wordmeanse = st3;
Worddegree = st4;
type = 0;
}
public word(String st1,String st2,String st3,String st4,int k){
WordName = st1;
Wordtype = st2;
type = k;
Wordmeanse = st3;
Worddegree = st4;
}
public String getWordName(){
return WordName;
}
public void setWordName(String st){
WordName = st;
}
public String getWordtype(){
return Wordtype;
}
public void setWordtype(String st){
Wordtype = st;
}
public String getWordmeanse(){
return Wordmeanse;
}
public void setWordmeanse(String st){
Wordmeanse = st;
}
public void setWorddegree(String st){
Worddegree = st;
}
public int gettype(){
return type;
}
public String getWorddegree(){
return Worddegree;
}
}
?? 快捷鍵說明
復(fù)制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號(hào)
Ctrl + =
減小字號(hào)
Ctrl + -