insufficientmemoryexception.java
来自「java 语言编写的kmeans聚类算法源代码」· Java 代码 · 共 25 行
JAVA
25 行
package kmeans;
/**
* Exception thrown when insufficient memory is available to
* perform an operation. Designed to be throw before doing
* something that would cause a <code>java.lang.OutOfMemoryError</code>.
*/
public class InsufficientMemoryException extends Exception {
/**
* Constructor.
*
* @param message an explanatory message.
*/
public InsufficientMemoryException(String message) {
super(message);
}
/**
* Default constructor.
*/
public InsufficientMemoryException() {}
}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?