다음을 통해 공유


Decimal.GetBits 메서드

Decimal의 지정된 인스턴스 값을 같은 값의 이진 표시로 변환합니다.

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

구문

‘선언
Public Shared Function GetBits ( _
    d As Decimal _
) As Integer()
‘사용 방법
Dim d As Decimal
Dim returnValue As Integer()

returnValue = Decimal.GetBits(d)
public static int[] GetBits (
    decimal d
)
public:
static array<int>^ GetBits (
    Decimal d
)
public static int[] GetBits (
    Decimal d
)
public static function GetBits (
    d : decimal
) : int[]

매개 변수

반환 값

d의 이진 표시를 포함하는 네 개의 요소로 이루어진 32비트의 부호 있는 정수 배열입니다.

설명

Decimal 숫자의 이진 표현은 부호 1비트와 정수 96비트, 96비트 정수를 나누는 데 필요한 소수 자릿수 인수로 이루어져 있고 어떤 부분이 십진 분수인지를 지정합니다. 소수 자릿수 인수는 암시적으로 10이고 지수는 0에서 28까지입니다.

반환 값은 네 개의 요소로 이루어진 부호 있는 32비트 정수의 배열입니다.

반환된 배열의 첫째, 둘째, 셋째 요소는 96비트 정수의 상위, 중간 및 하위 32비트를 포함합니다.

반환된 배열의 네 요소에는 소수 자릿수 인수와 부호가 포함되며 다음 부분으로 구성됩니다.

하위 워드인 0에서 15비트는 사용되지 않으며 0이어야 합니다.

16비트에서 23비트에는 0에서 28 사이의 지수(정수를 나눌 10의 거듭제곱)를 포함해야 합니다.

24에서 30비트는 사용되지 않으며 0이어야 합니다.

31비트는 부호를 의미하며 0은 양수, 1은 음수를 나타냅니다.

이러한 비트 표시에서는 음수 0과 양수 0이 구분됩니다. 이러한 값은 모든 연산에서 동일하게 취급합니다.

예제

다음 코드 예제에서는 GetBits 메서드를 사용하여 몇 개의 Decimal 값을 동일한 이진 표현으로 변환합니다.

' Example of the Decimal.GetBits method. 
Imports System
Imports Microsoft.VisualBasic

Module DecimalGetBitsDemo
    
    Const dataFmt As String = _
        "{0,31}  {1,10:X8}{2,10:X8}{3,10:X8}{4,10:X8}"

    ' Display the Decimal.GetBits argument and the result array.
    Sub ShowDecimalGetBits( Argument As Decimal )

        Dim Bits As Integer( ) = Decimal.GetBits( Argument )

        Console.WriteLine( dataFmt, Argument, _
            Bits( 3 ), Bits( 2 ), Bits( 1 ), Bits( 0 ) )
    End Sub

    Sub Main( )
        Console.WriteLine( "This example of the " & _
            "Decimal.GetBits( Decimal ) method " & vbCrLf & _
            "generates the following output. It displays " & _
            "the argument " & vbCrLf & "as a Decimal and the result " & _
            "array in hexadecimal." & vbCrLf )
        Console.WriteLine( dataFmt, "Argument", "Bits(3)", _
            "Bits(2)", "Bits(1)", "Bits(0)" )
        Console.WriteLine( dataFmt, "--------", "-------", _
            "-------", "-------", "-------" )

        ' Get internal bits for Decimal objects.
        ShowDecimalGetBits( 1D )
        ShowDecimalGetBits( 100000000000000D )
        ShowDecimalGetBits( 10000000000000000000000000000D )
        ShowDecimalGetBits( _
            Decimal.Parse( "100000000000000.00000000000000" ) )
        ShowDecimalGetBits( _
            Decimal.Parse( "1.0000000000000000000000000000" ) )
        ShowDecimalGetBits( 123456789D ) 
        ShowDecimalGetBits( 0.123456789D ) 
        ShowDecimalGetBits( 0.000000000123456789D ) 
        ShowDecimalGetBits( 0.000000000000000000123456789D ) 
        ShowDecimalGetBits( 4294967295D ) 
        ShowDecimalGetBits( 18446744073709551615D ) 
        ShowDecimalGetBits( Decimal.MaxValue ) 
        ShowDecimalGetBits( Decimal.MinValue ) 
        ShowDecimalGetBits( -7.9228162514264337593543950335D ) 
    End Sub
End Module 

' This example of the Decimal.GetBits( Decimal ) method
' generates the following output. It displays the argument
' as a Decimal and the result array in hexadecimal.
' 
'                        Argument     Bits(3)   Bits(2)   Bits(1)   Bits(0)
'                        --------     -------   -------   -------   -------
'                               1    00000000  00000000  00000000  00000001
'                 100000000000000    00000000  00000000  00005AF3  107A4000
'   10000000000000000000000000000    00000000  204FCE5E  3E250261  10000000
'  100000000000000.00000000000000    000E0000  204FCE5E  3E250261  10000000
'  1.0000000000000000000000000000    001C0000  204FCE5E  3E250261  10000000
'                       123456789    00000000  00000000  00000000  075BCD15
'                     0.123456789    00090000  00000000  00000000  075BCD15
'            0.000000000123456789    00120000  00000000  00000000  075BCD15
'   0.000000000000000000123456789    001B0000  00000000  00000000  075BCD15
'                      4294967295    00000000  00000000  00000000  FFFFFFFF
'            18446744073709551615    00000000  00000000  FFFFFFFF  FFFFFFFF
'   79228162514264337593543950335    00000000  FFFFFFFF  FFFFFFFF  FFFFFFFF
'  -79228162514264337593543950335    80000000  FFFFFFFF  FFFFFFFF  FFFFFFFF
' -7.9228162514264337593543950335    801C0000  FFFFFFFF  FFFFFFFF  FFFFFFFF
// Example of the decimal.GetBits method. 
using System;

class DecimalGetBitsDemo
{
    const string dataFmt = "{0,31}  {1,10:X8}{2,10:X8}{3,10:X8}{4,10:X8}";

    // Display the decimal.GetBits argument and the result array.
    public static void ShowDecimalGetBits( decimal Argument )
    {
        int[ ] Bits = decimal.GetBits( Argument );

        Console.WriteLine( dataFmt, Argument, 
            Bits[ 3 ], Bits[ 2 ], Bits[ 1 ], Bits[ 0 ] );
    }

    public static void Main( )
    {
        Console.WriteLine( "This example of the " +
            "decimal.GetBits( decimal ) method \ngenerates the " +
            "following output. It displays the argument \nas a " +
            "decimal and the result array in hexadecimal.\n" );
        Console.WriteLine( dataFmt, "Argument", "Bits[3]", 
            "Bits[2]", "Bits[1]", "Bits[0]" );
        Console.WriteLine( dataFmt, "--------", "-------", 
            "-------", "-------", "-------" );

        // Get internal bits for decimal objects.
        ShowDecimalGetBits( 1M );
        ShowDecimalGetBits( 100000000000000M );
        ShowDecimalGetBits( 10000000000000000000000000000M );
        ShowDecimalGetBits( 100000000000000.00000000000000M );
        ShowDecimalGetBits( 1.0000000000000000000000000000M );
        ShowDecimalGetBits( 123456789M );
        ShowDecimalGetBits( 0.123456789M );
        ShowDecimalGetBits( 0.000000000123456789M );
        ShowDecimalGetBits( 0.000000000000000000123456789M );
        ShowDecimalGetBits( 4294967295M );
        ShowDecimalGetBits( 18446744073709551615M );
        ShowDecimalGetBits( decimal.MaxValue );
        ShowDecimalGetBits( decimal.MinValue );
        ShowDecimalGetBits( -7.9228162514264337593543950335M );
    }
}

/*
This example of the decimal.GetBits( decimal ) method
generates the following output. It displays the argument
as a decimal and the result array in hexadecimal.

                       Argument     Bits[3]   Bits[2]   Bits[1]   Bits[0]
                       --------     -------   -------   -------   -------
                              1    00000000  00000000  00000000  00000001
                100000000000000    00000000  00000000  00005AF3  107A4000
  10000000000000000000000000000    00000000  204FCE5E  3E250261  10000000
 100000000000000.00000000000000    000E0000  204FCE5E  3E250261  10000000
 1.0000000000000000000000000000    001C0000  204FCE5E  3E250261  10000000
                      123456789    00000000  00000000  00000000  075BCD15
                    0.123456789    00090000  00000000  00000000  075BCD15
           0.000000000123456789    00120000  00000000  00000000  075BCD15
  0.000000000000000000123456789    001B0000  00000000  00000000  075BCD15
                     4294967295    00000000  00000000  00000000  FFFFFFFF
           18446744073709551615    00000000  00000000  FFFFFFFF  FFFFFFFF
  79228162514264337593543950335    00000000  FFFFFFFF  FFFFFFFF  FFFFFFFF
 -79228162514264337593543950335    80000000  FFFFFFFF  FFFFFFFF  FFFFFFFF
-7.9228162514264337593543950335    801C0000  FFFFFFFF  FFFFFFFF  FFFFFFFF
*/
// Example of the Decimal::GetBits method. 
using namespace System;
const __wchar_t * dataFmt = L"{0,31}  {1,10:X8}{2,10:X8}{3,10:X8}{4,10:X8}";

// Display the Decimal::GetBits argument and the result array.
void ShowDecimalGetBits( Decimal Argument )
{
   array<int>^Bits = Decimal::GetBits( Argument );
   Console::WriteLine( gcnew String( dataFmt ), Argument, Bits[ 3 ], Bits[ 2 ], Bits[ 1 ], Bits[ 0 ] );
}

int main()
{
   Console::WriteLine( "This example of the "
   "Decimal::GetBits( Decimal ) method \ngenerates the "
   "following output. It displays the argument \nas a "
   "Decimal and the result array in hexadecimal.\n" );
   Console::WriteLine( gcnew String( dataFmt ), "Argument", "Bits[3]", "Bits[2]", "Bits[1]", "Bits[0]" );
   Console::WriteLine( gcnew String( dataFmt ), "--------", "-------", "-------", "-------", "-------" );
   
   // Get internal bits for Decimal objects.
   ShowDecimalGetBits( Decimal::Parse( "1" ) );
   ShowDecimalGetBits( Decimal::Parse( "100000000000000" ) );
   ShowDecimalGetBits( Decimal::Parse( "10000000000000000000000000000" ) );
   ShowDecimalGetBits( Decimal::Parse( "100000000000000.00000000000000" ) );
   ShowDecimalGetBits( Decimal::Parse( "1.0000000000000000000000000000" ) );
   ShowDecimalGetBits( Decimal::Parse( "123456789" ) );
   ShowDecimalGetBits( Decimal::Parse( "0.123456789" ) );
   ShowDecimalGetBits( Decimal::Parse( "0.000000000123456789" ) );
   ShowDecimalGetBits( Decimal::Parse( "0.000000000000000000123456789" ) );
   ShowDecimalGetBits( Decimal::Parse( "4294967295" ) );
   ShowDecimalGetBits( Decimal::Parse( "18446744073709551615" ) );
   ShowDecimalGetBits( Decimal::MaxValue );
   ShowDecimalGetBits( Decimal::MinValue );
   ShowDecimalGetBits( Decimal::Parse( "-7.9228162514264337593543950335" ) );
}

/*
This example of the Decimal::GetBits( Decimal ) method
generates the following output. It displays the argument
as a Decimal and the result array in hexadecimal.

                       Argument     Bits[3]   Bits[2]   Bits[1]   Bits[0]
                       --------     -------   -------   -------   -------
                              1    00000000  00000000  00000000  00000001
                100000000000000    00000000  00000000  00005AF3  107A4000
  10000000000000000000000000000    00000000  204FCE5E  3E250261  10000000
 100000000000000.00000000000000    000E0000  204FCE5E  3E250261  10000000
 1.0000000000000000000000000000    001C0000  204FCE5E  3E250261  10000000
                      123456789    00000000  00000000  00000000  075BCD15
                    0.123456789    00090000  00000000  00000000  075BCD15
           0.000000000123456789    00120000  00000000  00000000  075BCD15
  0.000000000000000000123456789    001B0000  00000000  00000000  075BCD15
                     4294967295    00000000  00000000  00000000  FFFFFFFF
           18446744073709551615    00000000  00000000  FFFFFFFF  FFFFFFFF
  79228162514264337593543950335    00000000  FFFFFFFF  FFFFFFFF  FFFFFFFF
 -79228162514264337593543950335    80000000  FFFFFFFF  FFFFFFFF  FFFFFFFF
-7.9228162514264337593543950335    801C0000  FFFFFFFF  FFFFFFFF  FFFFFFFF
*/

플랫폼

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에서 지원

참고 항목

참조

Decimal 구조체
Decimal 멤버
System 네임스페이스
Decimal