C# 一个数除以 0 有两种放回值; double.NaN 是double的一个constant字段, 表示"不是一个数"
Posted onecrazystone
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了C# 一个数除以 0 有两种放回值; double.NaN 是double的一个constant字段, 表示"不是一个数"相关的知识,希望对你有一定的参考价值。
A method or operator returns NaN when the result of an operation is undefined. For example, the result of dividing zero by zero is NaN, as the following example shows. (But note that dividing a non-zero number by zero returns either PositiveInfinity or NegativeInfinity, depending on the sign of the divisor.)
In addition, a method call with a NaN value or an operation on a NaN value returns NaN, as the following example shows.
Use the IsNaN method to determine whether a value is not a number. The Equality operator considers two NaN values to be unequal to one another. In general, Double operators cannot be used to compare Double.NaN with other Double values, although comparison methods (such as Equals and CompareTo) can. The following example illustrates the difference in behavior between Double comparison operators and methods.
public const double NaN = NaN;
以上是关于C# 一个数除以 0 有两种放回值; double.NaN 是double的一个constant字段, 表示"不是一个数"的主要内容,如果未能解决你的问题,请参考以下文章
在java中的double和float类型数据相除为啥可以除以零