Java,各类型取值范围

        DecimalFormat a = new DecimalFormat("#,###.000");
        System.out.println(a.format(Long.MAX_VALUE));
        System.out.println(a.format(Long.MIN_VALUE));

原文地址:https://www.cnblogs.com/alipayhutu/p/2536793.html