⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 overheadevent.java

📁 对于CPU线程调度的模拟
💻 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 + -