disposable.java
来自「一个轻量级的MVC框架实例」· Java 代码 · 共 18 行
JAVA
18 行
package com.javaeedev.lightweight.common;
/**
* Object which implements this interface will be invoked of its
* <code>dispose</code> method to release any resources it holds
* when object is destroyed.
*
* @author Xuefeng
*/
public interface Disposable {
/**
* Dispose this object and release all resources it holds.
*/
void dispose();
}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?