本文介绍了比较双精度值的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我有一个双重的值i动态获取和值是0.94289988675,也是我收到了另一双,其值是0.94289988777。我只需要这两个值进行比较。但它说,他们是不一样的。我如何比较,直到这些值的前四位数字。

code

 为(Z = 0; z,其中,something.Count(); Z ++)
{
    如果(最大== Math.Round(0.94289988675 [Z],4))
    {
        //继续
    }
}

=最大0.94289988675
0.94289988675 [Z]来0.94289988777。 z是。

它不会在循环去。请帮助我。


解决方案

I assume you mean 4 digits, not 4 bits.

Just take the Absolute value of the difference:

if (Math.Abs(largest - 0.94289988675) < 0.0001)
{
    //proceed
}

Equality is a pretty difficult concept with floating point types, never use the simple ==

这篇关于比较双精度值的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

05-29 09:10