C # a divide by zero, there are two back value; double.NaN is double of a constant field that indicates "Not a Number"

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 in = NaN;

Guess you like

Origin www.cnblogs.com/onecrazystone/p/12289634.html