📄 queuefullexception.java
字号:
/** * * Exception for Priority Queue full * * written by : R. G. Garside * * first written : 10/July/96 * last rewritten : 11/July/96 * */public class QueueFullException extends Exception { public QueueFullException() { } // end of constructor method public QueueFullException(String message) { super(message) ; } // end of constructor method } // end of class QueueFullException
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -