我使用下面的行来转换浮点数为int,但它不是像我想要的那样准确:

 float a=8.61f;
 int b;

 b=(int)a;

结果是:8(它应该是9)

当a = -7.65f时,结果是:-7(它应该是-8)

最好的方法是什么?


当前回答

使用Math.round()将浮点数舍入为最接近的整数。

其他回答

对我来说,更简单:(int) (a +.5) // a是浮点数。返回四舍五入的值。

不依赖于Java Math.round()类型

数学。Round还返回一个整数值,因此不需要类型转换。

int b = Math.round(float a);

使用Math.round(value),然后在类型转换后将其转换为整数。

float a = 8.61f;
int b = (int)Math.round(a);

通过将Float原语传递给构造函数来实例化Float对象,然后使用您创建的Float对象返回int原语。

Explanation
Since number wrapper classes extend the java.lang.Number class, you can have any number wrapper object return any other number primitive type by using the .<type>Value() method.

步骤

创建一个Float对象 使用. intvalue()方法返回一个原语int。

例子

Float mFloat = Float.valueOf(8.65f);
int i = mFloat.intValue();

round(value)将值四舍五入到最接近的整数。

Use

1) b=(int)(Math.round(a));

2) a=Math.round(a);  
   b=(int)a;