本次主要讲解的是数学操作类的使用。
Math专门进行数学计算的操作类,里面提供了一系列的数学计算方法。在Math类里面提供的一切方法都是static型方法,因为Math类里面没有普通属性。Math类就是一个工具类。
在整个Math类里面实际上只有一个方法能引起我们的注意。
四舍五入:public static long round(double a)
范例:观察四舍五入
public class TestDemo{
public static void main(String[] args) throws Exception{
System.out.println(Math.round(11.5));
System.out.println(Math.round(-11.5));
}
}
如果进行负数四舍五入的时候,操作的数据小数位大于0.5才进位,小于等于0.5不进位。
网友评论