Math类常用方法

Math类

Math类包含了用于执行数学运算的属性和方法,如初等指数,对数,平方根和三角函数等。
Math的构造方法是私有化的,所以不能创建对象。
Math的方法都被定义为static形式,通过Math类可以在主函数中直接调用。
所属包:java.lang.Math   // java中lang包不用引用,可以直接使用。

Math常用方法

1) Math.floor

返回小于等于(<=)给定参数的最大整数。
例如:

System.out.println("Math.floor(-9.2): " + Math.floor(-9.2));
System.out.println("Math.floor(-9.6): " + Math.floor(-9.6));
System.out.println("Math.floor(1.1): " + Math.floor(1.1));
System.out.println("Math.floor(1.7): " + Math.floor(1.7));

输出为:

Math.floor(-9.2): -10.0
Math.floor(-9.6): -10.0
Math.floor(1.1): 1.0
Math.floor(1.7): 1.0

2)Math.round

表示四舍五入,算法为Math.floor(x+0.5),既将原来的数字加上0.5后再向下取整。
例如:

System.out.println("Math.round(-2.5): " + Math.round(-2.5));
System.out.println("Math.round(-2.7): " + Math.round(-2.7));
System.out.println("Math.round(1.1): " + Math.round(0.1));
System.out.println("Math.round(1.6): " + Math.round(0.6));
System.out.println("Math.round(6.5): " + Math.round(6.5));
System.out.println("Math.round(-6.5): " + Math.round(-6.5));

输出为:

ath.round(-2.5): -2
Math.round(-2.7): -3
Math.round(1.1): 1
Math.round(1.6): 2
Math.round(6.5): 7
Math.round(-6.5): -6

3)Math.ceil

返回大于等于(>=)给定参数的最大整数。
例如:

System.out.println("Math.ceil(-9.2): " + Math.ceil(-9.2));
System.out.println("Math.ceil(-9.6): " + Math.ceil(-9.6));
System.out.println("Math.ceil(1.1): " + Math.ceil(1.1));
System.out.println("Math.ceil(1.7): " + Math.ceil(1.7));

输出为:

Math.ceil(-9.2): -9.0
Math.ceil(-9.6): -9.0
Math.ceil(1.1): 2.0
Math.ceil(1.7): 2.0

4)Math.rint

返回最接近给定参数的整数,如果有2个数同样接近,则返回偶数的那个。
例如:

System.out.println("Math.rint(-1.1): " + Math.rint(-1.1));
System.out.println("Math.rint(-1.5): " + Math.rint(-1.5));
System.out.println("Math.rint(0.1): " + Math.rint(0.1));
System.out.println("Math.rint(0.5): " + Math.rint(0.5));

输出为:

Math.rint(-1.1): -1.0
Math.rint(-1.5): -2.0
Math.rint(0.1): 0.0
Math.rint(0.5): 0.0

5)Math.random

返回一个随机数,0.0<= Math.random() <1.0,返回值为double值。
例如:

System.out.println(Math.random());
System.out.println(Math.random());

输出为:

0.9806503340354787
0.5966220498683077

6)Math其他常用方法

 /** 
*Math.sqrt()//计算平方根
*Math.cbrt()//计算立方根
*Math.pow(a, b)//计算a的b次方
*Math.max( , );//计算最大值
*Math.min( , );//计算最小值
*Math.abs();//求绝对值
*/
System.out.println(Math.sqrt(36));  //6.0 
System.out.println(Math.cbrt(27));  //3.0
System.out.println(Math.pow(3,2));   //9.0
System.out.println(Math.max(-11.5,2.5));//2.5
System.out.println(Math.min(0.3,3.2));//0.3
System.out.println(Math.abs(-9.9));  //9.9 

请尊重作者劳动成果,转载请标明原文链接:https://www.jianshu.com/p/132b38d6fa86

你可能感兴趣的:(Math类常用方法)