Android Studio错误计算基本

时间:2016-04-04 05:28:09

标签: android-studio-2.0

今天,我在AS中实现了一个基本计算,结果如下:https://www.flickr.com/photos/139045967@N03/26159345381/in/dateposted-public/

1.0f - 16.0f/100 = 0.84000003; // is right ?

我使用MAC和AS 2.1预览5.有人帮我解决这个问题吗?

1 个答案:

答案 0 :(得分:0)

float使用24位作为有效数字。这意味着它具有大约7位精度。

1234567
0.8400000 3

它与Android Studio无关。