다음을 통해 공유


Double.IsNaN 메서드

지정된 숫자가 Not-a-Number(NaN)로 계산되는지 여부를 나타내는 값을 반환합니다.

네임스페이스: System
어셈블리: mscorlib(mscorlib.dll)

구문

‘선언
Public Shared Function IsNaN ( _
    d As Double _
) As Boolean
‘사용 방법
Dim d As Double
Dim returnValue As Boolean

returnValue = Double.IsNaN(d)
public static bool IsNaN (
    double d
)
public:
static bool IsNaN (
    double d
)
public static boolean IsNaN (
    double d
)
public static function IsNaN (
    d : double
) : boolean

매개 변수

  • d
    배정밀도 부동 소수점 숫자입니다.

반환 값

d가 NaN으로 계산되면 true이고, 그렇지 않으면 false입니다.

설명

부동 소수점 연산은 NaN을 반환하여 연산 결과가 정의되지 않음을 알립니다. 예를 들어, 0.0을 0.0으로 나눈 결과는 NaN입니다.

예제

다음 코드 예제에서는 IsNaN를 사용합니다.

' This will return true.
If Double.IsNaN(0 / zero) Then
    Console.WriteLine("Double.IsNan() can determine whether a value is not-a-number.")
End If
// This will return true.
if (Double.IsNaN(0 / zero)) 
{
    Console.WriteLine("Double.IsNan() can determine whether a value is not-a-number.");
}
// This will return true.
if ( Double::IsNaN( 0 / zero ) )
{
   Console::WriteLine( "Double::IsNan() can determine whether a value is not-a-number." );
}
// This will return true.
if (System.Double.IsNaN(0 / zero.doubleValue())) {
    Console.WriteLine("Double.IsNan() can determine whether" 
        + " a value is not-a-number.");
}

플랫폼

Windows 98, Windows 2000 SP4, Windows CE, Windows Millennium Edition, Windows Mobile for Pocket PC, Windows Mobile for Smartphone, Windows Server 2003, Windows XP Media Center Edition, Windows XP Professional x64 Edition, Windows XP SP2, Windows XP Starter Edition

.NET Framework에서 모든 플래폼의 모든 버전을 지원하지는 않습니다. 지원되는 버전의 목록은 시스템 요구 사항을 참조하십시오.

버전 정보

.NET Framework

2.0, 1.1, 1.0에서 지원

.NET Compact Framework

2.0, 1.0에서 지원

참고 항목

참조

Double 구조체
Double 멤버
System 네임스페이스
NaN