数学工具类Math
1. 概述
java.util.Math类是数学相关的工具类,里面提供了大量的静态方法,完成与数学运算相关的操作。
2. 基本的方法
public static double abs(double num);获取绝对值。有多种重载,absolutely绝对地
public static double ceil(double num);向上取整,ceil是天花板的意思
public static double floor(double num);向下取整,floor是地板的意思
public static long round(double num);四舍五入,round有大约,完整的意思
1
2
3
4
3. 四种方法一起通过代码演示一遍
public class MathMethod {
public static void main(String[] args) {
//abs方法,取绝对值
System.out.println(Math.abs(3.14)); //3.14
System.out.println(Math.abs(0)); //0
System.out.println(Math.abs(-2.2)); //2.2
System.out.println("---------------------");
//ceil方法,向上取整,往大的靠
System.out.println(Math.ceil(3.2)); //4.0
System.out.println(Math.ceil(3.8)); //4.0
System.out.println(Math.ceil(-3.2)); //-3.0
System.out.println(Math.ceil(-3.8)); //-3.0
System.out.println("---------------------");
//floor方法,向下取整,往小的靠
System.out.println(Math.floor(3.2)); //3.0
System.out.println(Math.floor(3.8)); //3.0
System.out.println(Math.floor(-3.2)); //-4.0
System.out.println(Math.floor(-3.8)); //-4.0
System.out.println("---------------------");
//round方法,四舍五入,往边缘的靠
System.out.println(Math.round(3.2)); //3
System.out.println(Math.round(3.8)); //4
System.out.println(Math.round(-3.2)); //-3
System.out.println(Math.round(-3.8)); //-4
}
}
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
4. 圆周率Math.PI
在Math类的源码中,我们可以看到,它自定义的圆周率 PI = 3.14159265358979323846
以后的计算如果需要用到PI,尽量用已经定义好的圆周率,非常精确
网友评论