📄 event.java
字号:
/** A generic event for the waiting-line simulation. */
public abstract class Event implements Comparable
{
/** The time that the event is to be done. */
protected int time;
/** Implementation of the Comparable interface.
Analysis: Time = O(1) */
public int compareTo(Object other)
{
Integer t1 = new Integer(time);
Integer t2 = new Integer(((Event)other).time);
return t1.compareTo(t2);
}
/** Execute this event. */
abstract public void execute();
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -