Android 浮点数转整数
为什么这么难找出来?
public boolean onTouch(View v, MotionEvent event)
我需要将 float event.getY() 转换为 int。
这可能吗?
event.getY().intValue()
根本不起作用。
有什么想法吗?
Why is this so hard to find out?
public boolean onTouch(View v, MotionEvent event)
I need to convert float event.getY()
to an int.
Is this possible?
event.getY().intValue()
will not work at all.
Any ideas?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
呃,是的,怎么样:
您会看到
getY()
只为具有子像素精度的设备返回浮点数。Uhhh, yeah, how about:
You see
getY()
only returns a float for devices that have a sub-pixel accuracy.使用
Math.round(yourFloat);
比
(int)yourFloat;
更好,这一切都与精度有关。如果您使用
(int)
您只会得到删除点后的数字。如果您使用Math
,您将得到一个四舍五入的数字。这似乎没什么大不了的。例如,如果您尝试对 3.1 这样的值进行舍入,两种方法都会产生相同的结果 - 3。但是取 3.9 或 3.8。实际上是 4,但
(int)3.9 = 3
而
Math.round(3.9) = 4
Using
Math.round(yourFloat);
is better than
(int)yourFloat;
It is all about precision. If you use
(int)
you'll just get numbers after the point removed. If you useMath
, you'll get a rounded number. It doesn't seems like a big deal.For example, if you try to round something like 3.1, both methods would produce the same result - 3.But take 3.9 or 3.8. It's practically 4, yet
(int)3.9 = 3
whereas
Math.round(3.9) = 4
只需投射即可:
Just cast it:
Math.round() 会将浮点数四舍五入到最接近的整数。
Math.round() will round the float to the nearest integer.