抱歉,这可能是一个简单的愚蠢问题,但是我需要确定一下。
我有这个if
表情
void Foo()
{
System.Double something = GetSomething();
if (something == 0) //Comparison of floating point numbers with equality
// operator. Possible loss of precision while rounding value
{}
}
那表达等于吗
void Foo()
{
System.Double something = GetSomething();
if (something < 1)
{}
}
?因为那样我可能会遇到问题,请输入if
一个值为0.9的。
// Comparison of floating point numbers with equality // operator.
您真的需要指定吗?:)