Math 提供了大量的数学操作方法
Math类中所有的方法都是static 方法
重点看这个操作,四舍五入
System.out.println(Math.round(-16.5)) ; -16 System.out.println(Math.round(16.5)) ; 17
大于等于0.5进位。
Random类
取得随机数的类 java.util 包
产生100之内的随机整数
Random rand = new Random() ; for(int x = 0 ; x < 10 ; x ++){ System.out.println(rand.nextInt(100) ) ; }
大整数操作类
如果现在操作的数据值很大,想到double
System.out.println(Double.MAX_VALUE * Double.MAX_VALUE) ;
超过double 结果是Infinity
如果超过double当然不能用double保存,现在只有String来保存这个数字。
在java中考虑到了这类情况,专门有了
BigInterger 和 BigDecimal
BIgInteger构造方法
BigInteger bigA = new BigInteger("65466546532321") ; BigInteger bigB = new BigInteger("654654635463313"); System.out.println(bigA.add(bigB)) ; System.out.println(bigA.subtract(bigB));