sprocess.java
来自「操作系统中进程调度过程的模拟程序」· Java 代码 · 共 17 行
JAVA
17 行
package sched;
public class sProcess {
public int cputime;
public int ioblocking;
public int cpudone;
public int ionext;
public int numblocked;
public sProcess (int cputime, int ioblocking, int cpudone, int ionext, int numblocked) {
this.cputime = cputime;
this.ioblocking = ioblocking;
this.cpudone = cpudone;
this.ionext = ionext;
this.numblocked = numblocked;
}
}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?