reusable.java
来自「java编写的数据库连接池的源代码。包含有连接池的源码。」· Java 代码 · 共 15 行
JAVA
15 行
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 + =
减小字号Ctrl + -
显示快捷键?