强制类型转换通过截断小数部分将浮点值转换为整形. math.round()
返回最接近参数的 int。结果将舍入为整数:加上 1/2,对结果调用 floor 并将所得结果强制转换为 int 类型。换句话说,结果等于以下表达式的值:
(int)math.floor(a + 0.5f)
特殊情况如下:
如果参数为 nan,那么结果为 0。
如果结果为负无穷大或任何小于等于 integer.min_value 的值,那么结果等于 integer.min_value 的值。
如果参数为正无穷大或任何大于等于 integer.max_value 的值,那么结果等于 integer.max_value 的值。
public static int round(float a) :
若传入round方法的值为float,返回值为int,可直接用int类型的值接收即可.
public static long round(double a) :
但传入round方法的值为double时,返回值为long,则需要手动强转为int类型.
代码示例:
public class mathrounddemo {
public static void main(string[] args) {
double a = 1.847;
system.out.println(math.round(a));
float b = 1.847f;
system.out.println(math.round(b));
int c = (int)math.round(a);
system.out.println(c);
system.out.println(math.round(a*100)/100.0);
system.out.printf("%.2f",a);
}
}
/*输出:
2
2
2
1.85
1.85
*/
代码分析:
float b = 1.847f;若不添加后缀f,则需要将1.847进行强转,默认小数位double类型.赋给float(大转小会损失精度,则需要强制转换).
int c = (int)math.round(a);传入的参数为double类型,返回类型为long,同理,大转小,需要强制转换.