当前位置: 技术问答>java相关
如何将INT转为FLOAT并用于浮点计算!
来源: 互联网 发布时间:2015-01-23
本文导语: | int -> float 不需要强制转换。 Integer -> Float : Integer temp = new Integer(100); Float temp1 = new Float(temp.floatValue()); rinehart的答案中有一个小小的疏忽,float是基本类型,不能赋给Float对象。 | ...
|
int -> float 不需要强制转换。
Integer -> Float :
Integer temp = new Integer(100);
Float temp1 = new Float(temp.floatValue());
rinehart的答案中有一个小小的疏忽,float是基本类型,不能赋给Float对象。
Integer -> Float :
Integer temp = new Integer(100);
Float temp1 = new Float(temp.floatValue());
rinehart的答案中有一个小小的疏忽,float是基本类型,不能赋给Float对象。
|
double temp = 124.34;
temp = Math.rint(temp*10)/10;
temp = Math.rint(temp*10)/10;