java数值类型取值范围

2018-12-01  本文已影响13人  平凡的鱼仔

 对于数值类型的基本类型,如byte、short、int、long、float、double、char,这些类型的取值范围不需要硬背,取值范围已经以常量的形式定义在对应的包装类中。位数用SIZE,最小值用MIN_VALUE,最大值用MAX_VALUE。

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。

上一篇 下一篇

猜你喜欢

热点阅读