美文网首页
java数值类型取值范围

java数值类型取值范围

作者: 平凡的鱼仔 | 来源:发表于2018-12-01 19:35 被阅读13次

     对于数值类型的基本类型,如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。

    相关文章

      网友评论

          本文标题:java数值类型取值范围

          本文链接:https://www.haomeiwen.com/subject/krilcqtx.html