5 Math类
2017-06-24 本文已影响0人
我是老薛
在编写程序时,尤其时数学运算时,会涉及到很多的数学运算,Java提供了Math类,其中有很多方法可以实现各种数学运算。
下面看下例子:
public class MathDemo {
public static void main(String[] args) {
System.out.println(Math.max(12, 17)); //获取最大值
System.out.println(Math.abs(-10)); //获取绝对值
System.out.println(Math.random()); //获取随机数
}
}
上面例子只是举了几个简单操作,更多的操作查看Math类的详细说明。