1

在一个循环中,我添加 0.10 直到达到所需的 #,并获取索引。这是我的代码:

    private static int getIndexOfUnits(float units) {
    int index = -1;
    float addup = 0.10f;
    for(float i = 1.00f; i < units; i=(float)i+addup) {
        index++;
        System.out.println("I = " + i + " Index = " + index);
    }

    return index;
}

如果通过的单位是 5.7,我看到的输出是:

I = 1.0 Index = 0
I = 1.1 Index = 1
I = 1.2 Index = 2
I = 1.3000001 Index = 3
I = 1.4000001 Index = 4
I = 1.5000001 Index = 5
I = 1.6000001 Index = 6
I = 1.7000002 Index = 7
I = 1.8000002 Index = 8
I = 1.9000002 Index = 9
I = 2.0000002 Index = 10
I = 2.1000001 Index = 11
I = 2.2 Index = 12
I = 2.3 Index = 13
I = 2.3999999 Index = 14
I = 2.4999998 Index = 15
I = 2.5999997 Index = 16
I = 2.6999996 Index = 17
I = 2.7999995 Index = 18
I = 2.8999994 Index = 19
I = 2.9999993 Index = 20
I = 3.0999992 Index = 21
I = 3.199999 Index = 22
I = 3.299999 Index = 23
I = 3.399999 Index = 24
I = 3.4999988 Index = 25
I = 3.5999987 Index = 26
I = 3.6999986 Index = 27
I = 3.7999985 Index = 28
I = 3.8999984 Index = 29
I = 3.9999983 Index = 30
I = 4.0999985 Index = 31
I = 4.1999984 Index = 32
I = 4.2999983 Index = 33
I = 4.399998 Index = 34
I = 4.499998 Index = 35
I = 4.599998 Index = 36
I = 4.699998 Index = 37
I = 4.799998 Index = 38
I = 4.8999977 Index = 39
I = 4.9999976 Index = 40
I = 5.0999975 Index = 41
I = 5.1999974 Index = 42
I = 5.2999973 Index = 43
I = 5.399997 Index = 44
I = 5.499997 Index = 45
I = 5.599997 Index = 46
I = 5.699997 Index = 47

如果单位是 18.90 或 29.90 之类的大数字,则会给出错误的索引。索引通常比应有的少 1。最初只添加了 0.10,但在 2.3 之后,它得到 2.39999.... 在添加 0.10 时。我相信这是一个精确的问题。如何处理它并确保我在大 # 上获得正确的索引,无论使用浮点数还是双精度数。

有任何想法吗 !!!!

4

5 回答 5

11

浮点指南

为什么我的数字,比如 0.1 + 0.2 加起来不是很好的 0.3 轮,而是得到一个奇怪的结果,比如 0.30000000000000004?

因为在内部,计算机使用的格式(二进制浮点)根本无法准确表示 0.1、0.2 或 0.3 之类的数字。

当代码被编译或解释时,你的“0.1”已经被四舍五入到该格式中最接近的数字,这会在计算发生之前导致一个小的舍入误差。

你不使用float或者double如果你需要数字来加起来exaclty。改为使用BigDecimal

于 2012-05-07T11:23:16.603 回答
1

问题是 float 使用的格式不能代表所有十进制数,因此有时会丢失精度。

请改用BigDecimal

于 2012-05-07T11:24:26.207 回答
1

Float 数据类型不提供精确表示。

BigDecimal会帮助你。下面的例子可能对你有帮助

BigDecimal decimal=new BigDecimal(10.0);
    for (int i = 0; i < 10; i++) {
        decimal=decimal.add(new BigDecimal(.1));
        System.out.println(decimal.floatValue());

    }
于 2012-05-07T11:25:50.290 回答
0

您不应该将浮点数用于此类事情(索引/迭代)。

每次都尝试计算 I:

I = 1.0f + (i*addup);

而且您不会累积浮点错误。

于 2012-05-07T11:42:07.263 回答
0

我认为这可能是您正在寻找的:

Java 从 import 包中提供了一个类:import java.text.DecimalFormat,称为DecimalFormat。它的签名是:

DecimalFormat myFormat = new DecimalFormat("0.0");

它需要一个 String 参数,您可以在其中指定要如何显示格式。

以下是如何将其应用于您的代码:

DecimalFormat myFormat;
private static int getIndexOfUnits(float units) {
myFormat = new DecimalFormat("0.0");
int index = -1;
float addup = 0.10f;
for(float i = 1.00f; i < units; i=(float)i+addup) {
    index++;
    System.out.println("I = " + myFormat.format(i) + " Index = " + index);
}

return index;

}

在您的 println 中,您可以看到使用对 DecimalFormat 的myFormat 对象引用format()调用了 DecimalFormat 的类方法float i——这是进行格式化的地方。

于 2012-05-07T13:19:23.230 回答