forkreport.java
来自「升级版本」· Java 代码 · 共 18 行
JAVA
18 行
class ForkReport extends ISReport {
public static final int DOWN = 0;
public static final int UP = 1;
protected int philId;
public ForkReport (int philId, int id, int state) {
super (id, state);
this.philId = philId;
}
public int getPhilId () {
return philId;
}
}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?