Math类是一个数学工具类方法,里面有很多静态工具方法;方便开发者直接调用
下面列举几个常见的方法,其它方法可查看API文档
public class testMath {
public static void main(String[] args) {
System.out.println(Math.max(1, 4));//求最大值
System.out.println(Math.min(1, 4));//求最小值
System.out.println(Math.pow(2, 3));//求次幂
System.out.println(Math.sqrt(4));//求平方根
System.out.println(Math.abs(-4));//求绝对值
System.out.println(Math.round(4.4));//四舍五入
System.out.println(Math.PI);//pi的值
System.out.println(Math.random());//随机产生[0,1)之间的数
}
}
运行结果