Android 浮点数转整数

发布于 2024-09-05 11:51:47 字数 218 浏览 3 评论 0原文

为什么这么难找出来?

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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(4

黑凤梨 2024-09-12 11:51:47

呃,是的,怎么样:

int y = (int)event.getY();

您会看到 getY() 只为具有子像素精度的设备返回浮点数。

Uhhh, yeah, how about:

int y = (int)event.getY();

You see getY() only returns a float for devices that have a sub-pixel accuracy.

如日中天 2024-09-12 11:51:47

使用

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 use Math, 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

百变从容 2024-09-12 11:51:47

只需投射即可:

int val = (int)event.getY();

Just cast it:

int val = (int)event.getY();
薄暮涼年 2024-09-12 11:51:47

Math.round() 会将浮点数四舍五入到最接近的整数。

Math.round() will round the float to the nearest integer.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文