📄 keywordsstruct.java
字号:
package structureWord;
public class KeywordsStruct {
private String name = new String(); // 单词本身
private int type; // 单词的机内码
private int code; // 机内码表示
// 即在符号表中的入口地址。
KeywordsStruct(String name, int type, int code) { // 构造方法
this.setName(name);
this.setType(type);
this.setCode(code);
}
public void setName(String name) {
this.name = name;
}
public String getName() {
return name;
}
public void setType(int type) {
this.type = type;
}
public int getType() {
return type;
}
public void setCode(int code) {
this.code = code;
}
public int getCode() {
return code;
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -