1.先说下怎么理解
round()方法可以这样理解:
将括号内的数+0.5之后,向下取值,
比如:round(3.4)就是3.4+0.5=3.9,向下取值是3,所以round(3.4)=3;
round(-10.5)就是-10.5+0.5=-10,向下取值就是-10,所以round(-10.5)=-10
所以,Math.round(11.5)=12;
现在再来看,Math.round(11.5),Math.round(-11.5)你应该知道等于多少了吧,掌握了方法就好解决问题了。
这个题面试了很多家就一家遇到,所以就来和大家分享下。
扩展:常用的三个
Math.ceil求最小的整数,但不小于本身.
ceil的英文意义是天花板,该方法就表示向上取整,
例子:
所以,Math.ceil(11.3)的结果为12,Math.ceil(-11.3)的结果是-11;
- /**
- * @see 求最小的整数,但不小于本身
- * @param double
- * @return double
- */
- System.out.println(Math.ceil(-1.1));
- System.out.println(Math.ceil(-1.9));
- System.out.println(Math.ceil(1.1));
- System.out.println(Math.ceil(1.9));
输出结果:
- -1.0
- -1.0
- 2.0
- 2.0
Math.floor求最大的整数,但不大于本身.
floor的英文意义是地板,该方法就表示向下取整,
例子:
floor的英文意义是地板,该方法就表示向下取整,
所以,Math.floor(11.6)的结果为11,Math.floor(-11.6)的结果是-12;
- /**
- * @see 求最大的整数,但不大于本身
- * @param double
- * @return double
- */
- System.out.println(Math.floor(-1.1));
- System.out.println(Math.floor(-1.9));
- System.out.println(Math.floor(1.1));
- System.out.println(Math.floor(1.9));
输出结果:
- -2.0
- -2.0
- 1.0
- 1.0
Math.round求本身的四舍五入.
- /**
- * @see 本身的四舍五入
- * @param double
- * @return long
- */
- System.out.println(Math.round(-1.1));
- System.out.println(Math.round(-1.9));
- System.out.println(Math.round(1.1));
- System.out.println(Math.round(1.9));
输出结果:
- -1
- -2
- 1
- 2
Math.abs求本身的绝对值.
- /**
- * @see 本身的绝对值
- * @param double|float|int|long
- * @return double|float|int|long
- */
- System.out.println(Math.abs(1.1));
- System.out.println(Math.abs(1.9));
- System.out.println(Math.abs(-1.1));
- System.out.println(Math.abs(-1.9));
输出结果:
- 1.1
- 1.9
- 1.1
- 1.9
Math.max与Math.min,比较两个数的最大值,最小值
- /**
- * @see 比较两个数的最大值,最小值
- * @param double|float|int|long
- * @return double|float|int|long
- */
- System.out.println(Math.max(1.0, 2.0));
- System.out.println(Math.min(-1.0, -2.0));
输出结果:
- 2.0
- -2.0
返回一个与第二个参数相同的标志(正负号)的值
- /**
- * @see 返回一个与第二个参数相同的标志(正负号)的值
- * @param double|float
- * @return double|float
- */
- System.out.println(Math.copySign(-1.9, 2.9));
- System.out.println(Math.copySign(1.9, -2.9));
- System.out.println(Math.copySign(0.0, 2.9));
- System.out.println(Math.copySign(0.0, -2.9));
输出结果:
- 1.9
- -1.9
- 0.0
- -0.0
Math
类的常用方法
封装了一些基本运算方法,包括进行三角运算的正弦、余弦、正切、余切相关的方法:
例如,求正弦的
sin
,求余弦的
cos
等,如果使用的话可以参考
JDK
。
下面的方法可能是我们经常要使用的:
(
1
)求最大值,可以用于求
int
类型,
long
类型,
float
类型,
double
类型的最大值,
下面仅仅下求整数最大值的方法的定义:
public static int max(int a,int b);
(
2
)求最小值,和求最大值基本相同。
public static int min(int a,int b);
(
3
)求绝对值,和求最大值的方法基本相同。
public static int abs(int a)
(
4
)四舍五入的方法
public static int round(float a)
public static long round(double d)
(
5
)计算幂
public static double pow(double a,double b)
(
6
)求下限值
public static double floor(double d)
(
7
)求上限值
public static double ceil(double d)
(
8
)求平方根
public static double sqrt(double d)
下面的例子包含了上面的
8
个方法:
double
d1
=
5.7;
double
d2
=
12.3;
double d3 = -5;
System.out.println(d1+"
和
"+d2+"
的最大值为:
"+Math.max(d1,d2));
System.out.println(d1+"
和
"+d2+"
的最小值为:
"+Math.min(d1,d2));
System.out.println(d3+"
的绝对值为:
"+Math.abs(d3));
System.out.println(d2+"
四舍五入之后为:
"+Math.round(d2));
System.out.println(d2+"
的
2
次幂为:
"+Math.pow(d2,2));
System.out.println(d2+"
的下限为:
"+Math.floor(d2));
System.out.println(d2+"
的上限为:
"+Math.ceil(d2));
System.out.println(d2+"
的平方根为:
"+Math.sqrt(d2));
运行结果为:
5.7
和
12.3
的最大值为:
12.3
5.7
和
12.3
的最小值为:
5.7
-5.0
的绝对值为:
5.0
12.3
四舍五入之后为:
12
12.3
的
2
次幂为:
151.29000000000002
12.3
的下限为:
12.0
12.3
的上限为:
13.0
12.3
的平方根为:
3.5071355833500366
(
9
)要获取一个随机数,如果是
0
到
1
之间的随机数,可以直接使用下面的方法:
public static double random();
如果希望得到某个范围的随机数,例如
60
到
100
,可以这样处理:
int
min=60;
int
max=100;
int
random;
random = min + (int) ( (max - min) * (Math.random()));