C# 一个数除以 0 有两种放回值; double.NaN 是double的一个constant字段, 表示"不是一个数"
2021-01-11 21:32
标签:com iso tor sed nan when compare als note 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字段, 表示"不是一个数" 标签:com iso tor sed nan when compare als note 原文地址:https://www.cnblogs.com/onecrazystone/p/12289634.html
上一篇:flume安装与使用
下一篇:C# 委托和事件
文章标题:C# 一个数除以 0 有两种放回值; double.NaN 是double的一个constant字段, 表示"不是一个数"
文章链接:http://soscw.com/index.php/essay/41378.html