对于数值类型的基本类型,如byte、short、int、long、float、double、char,这些类型的取值范围不需要硬背,取值范围已经以常量的形式定义在对应的包装类中。位数用SIZE,最小值用MIN_VALUE,最大值用MAX_VALUE。
- 例如:查看int、byte的位数、范围
public class Range{
public static void main(String[] args) {
System.out.println("int的位数为:"+Integer.SIZE);
System.out.println("int的最小值为:"+Integer.MIN_VALUE);
System.out.println("int的最大值为:"+Integer.MAX_VALUE);
System.out.println("Byte的位数为:"+Byte.SIZE);
System.out.println("Byte的最小值为:"+Byte.MIN_VALUE);
System.out.println("Byte的最大值为:"+Byte.MAX_VALUE);
}
}
ps:Byte.SIZE,Short.SIZE,Integer.SIZE,Long.SIZE,Float.SIZE,Double.SIZE,Character.SIZE。
网友评论