📄 reusable.java
字号:
package snaq.util;/** * Interface for an object that can be reused. * @see snaq.util.ObjectPool * @author Giles Winstanley */public interface Reusable{ /** * Cleans an object to put it in a state in which it can be reused. * @throws Exception if unable to recycle the this object */ public void recycle() throws Exception;}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -