码迷,mamicode.com
首页 > Windows程序 > 详细

C# 一个数除以 0 有两种放回值; double.NaN 是double的一个constant字段, 表示"不是一个数"

时间:2020-02-10 09:25:29      阅读:99      评论:0      收藏:0      [点我收藏+]

标签: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

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!