📄 overheadevent.java
字号:
package simcpu;
public class OverheadEvent extends Event {
SimThread thread;
public OverheadEvent(int time, EventDriver driver, SimSystem sys, SimThread nextThread) {
super(time,driver,sys);
this.thread=nextThread;
}
@Override
public void handel() {
sys.setRunningThread(thread);
thread.setState(State.RUNNING);
driver.predict(thread.createNextEvent(driver,sys));
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -