java 定数についてClassWithConstants

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了java 定数についてClassWithConstants相关的知识,希望对你有一定的参考价值。

public class ClassWithConstants {
	public static final int MIN_CONSTS = 0;
	public static final int CONST1 = 0;
	public static final int CONST2 = 1;
	public static final int MAX_CONSTS = 2;
	private void validateConstant(int constant) throws IllegalConstantException{
		if(constant < MIN_CONSTS || constant >= MAX_CONSTS){
			throw new IllegalConstantException();
		}
	}
}
class IllegalConstantException extends Exception{
}

以上是关于java 定数についてClassWithConstants的主要内容,如果未能解决你的问题,请参考以下文章

java 收藏についてTreeSetSample

java 收藏についてTreeMapSample

java 收集についてNavigableMapSample

java 收藏についてDequeSample

java 收藏についてQueueSample

java 系列についてCollectionTechnique