32 ビット符号付き整数を Decimal に変換します。
returnValue = Decimal.op_Implicit(value)
[C#]
public static implicit operator decimal(intvalue);
[C++]
public: static Decimal op_Implicit(intvalue);
[JScript]
returnValue = value;
[Visual Basic] Visual Basic では、この型で定義されている型変換を使用することができます。ただし、独自に定義することはできません。
[JScript] JScript では、この型で定義されている型変換を使用することができます。ただし、独自に定義することはできません。
引数 [Visual Basic, JScript]
- value
32 ビット符号付き整数。
パラメータ [C#, C++]
- value
32 ビット符号付き整数。
戻り値
変換された 32 ビット符号付き整数を表す Decimal 。
使用例
[Visual Basic, C#, C++] Int32 to Decimal 変換を使用して Int32 の値を Decimal の数値に変換するコード例を次に示します。この変換は C# では暗黙で行われますが、Visual Basic および C++ では op_Implicit 演算子が必要です。これらの言語では、 Decimal への暗黙の変換には、他のメソッドが使用されます。
' Example of the op_Implicit conversion from Integer to Decimal.
Imports System
Imports Microsoft.VisualBasic
Module DecimalFromInt32Demo
Const formatter As String = _
"{0,16}{1,15}{2,10:X8}{3,9:X8}{4,9:X8}{5,9:X8}"
' Convert the Integer argument and display the Decimal value.
Sub DecimalFromInt32( argument As Integer )
Dim decValue As Decimal
Dim bits( ) As Integer
' The compiler invokes a constructor in Visual Basic
' unless op_Implicit is explicitly called.
decValue = Decimal.op_Implicit( argument )
' Display the Decimal and its binary representation.
bits = Decimal.GetBits( decValue )
Console.WriteLine( formatter, argument, decValue, _
bits( 3 ), bits( 2 ), bits( 1 ), bits( 0 ) )
End Sub
Sub Main( )
Console.WriteLine( _
"This example of the op_Implicit conversion from " & _
"Integer to Decimal " & vbCrLf & "generates the " & _
"following output. It displays the Decimal value and " & _
vbCrLf & "its binary representation." & vbCrLf )
Console.WriteLine( formatter, "Integer argument", _
"Decimal value", "bits(3)", "bits(2)", _
"bits(1)", "bits(0)" )
Console.WriteLine( formatter, "----------------", _
"-------------", "-------", "-------", _
"-------", "-------" )
' Convert Integer values and display the results.
DecimalFromInt32( Integer.MinValue )
DecimalFromInt32( Integer.MaxValue )
DecimalFromInt32( &HFFFFFF )
DecimalFromInt32( 123456789 )
DecimalFromInt32( - 1000000000 )
End Sub
End Module
' This example of the op_Implicit conversion from Integer to Decimal
' generates the following output. It displays the Decimal value and
' its binary representation.
'
' Integer argument Decimal value bits(3) bits(2) bits(1) bits(0)
' ---------------- ------------- ------- ------- ------- -------
' -2147483648 -2147483648 80000000 00000000 00000000 80000000
' 2147483647 2147483647 00000000 00000000 00000000 7FFFFFFF
' 16777215 16777215 00000000 00000000 00000000 00FFFFFF
' 123456789 123456789 00000000 00000000 00000000 075BCD15
' -1000000000 -1000000000 80000000 00000000 00000000 3B9ACA00
[C#]
// Example of the implicit conversion from int to decimal.
using System;
class DecimalFromInt32Demo
{
const string formatter =
"{0,13}{1,15}{2,10:X8}{3,9:X8}{4,9:X8}{5,9:X8}";
// Convert the int argument and display the decimal value.
public static void DecimalFromInt32( int argument )
{
decimal decValue;
int[ ] bits;
// Display the decimal and its binary representation.
decValue = argument;
bits = decimal.GetBits( decValue );
Console.WriteLine( formatter, argument, decValue,
bits[ 3 ], bits[ 2 ], bits[ 1 ], bits[ 0 ] );
}
public static void Main( )
{
Console.WriteLine(
"This example of the implicit conversion from int " +
"to decimal generates the \nfollowing output. It " +
"displays the decimal value and its binary " +
"representation.\n" );
Console.WriteLine( formatter, "int argument",
"decimal value", "bits[3]", "bits[2]",
"bits[1]", "bits[0]" );
Console.WriteLine( formatter, "------------",
"-------------", "-------", "-------",
"-------", "-------" );
// Convert int values and display the results.
DecimalFromInt32( int.MinValue );
DecimalFromInt32( int.MaxValue );
DecimalFromInt32( 0xFFFFFF );
DecimalFromInt32( 123456789 );
DecimalFromInt32( -1000000000 );
}
}
/*
This example of the implicit conversion from int to decimal generates the
following output. It displays the decimal value and its binary representation.
int argument decimal value bits[3] bits[2] bits[1] bits[0]
------------ ------------- ------- ------- ------- -------
-2147483648 -2147483648 80000000 00000000 00000000 80000000
2147483647 2147483647 00000000 00000000 00000000 7FFFFFFF
16777215 16777215 00000000 00000000 00000000 00FFFFFF
123456789 123456789 00000000 00000000 00000000 075BCD15
-1000000000 -1000000000 80000000 00000000 00000000 3B9ACA00
*/
[C++]
// Example of the op_Implicit conversion from int to Decimal.
#using <mscorlib.dll>
using namespace System;
const __wchar_t* formatter =
L"{0,14}{1,15}{2,10:X8}{3,9:X8}{4,9:X8}{5,9:X8}";
// Convert the int argument and display the Decimal value.
void DecimalFromInt32( int argument )
{
Decimal decValue;
Int32 bits[ ];
// The compiler invokes a constructor in the Managed Extensions
// for C++ unless op_Implicit is explicitly called.
decValue = Decimal::op_Implicit( argument );
// Display the Decimal and its binary representation.
bits = Decimal::GetBits( decValue );
Console::WriteLine( formatter, __box( argument ),
__box( decValue ), __box( bits[ 3 ] ),
__box( bits[ 2 ] ), __box( bits[ 1 ] ), __box( bits[ 0 ] ) );
}
void main( )
{
Console::WriteLine(
S"This example of the op_Implicit conversion from "
S"int to Decimal \ngenerates the following output. "
S"It displays the Decimal value \nand its binary "
S"representation.\n" );
Console::WriteLine( formatter, S"int argument",
S"Decimal value", S"bits[3]", S"bits[2]", S"bits[1]", S"bits[0]" );
Console::WriteLine( formatter, S"------------",
S"-------------", S"-------", S"-------", S"-------", S"-------" );
// Convert int values and display the results.
DecimalFromInt32( Int32::MinValue );
DecimalFromInt32( Int32::MaxValue );
DecimalFromInt32( 0xFFFFFF );
DecimalFromInt32( 123456789 );
DecimalFromInt32( -1000000000 );
}
/*
This example of the op_Implicit conversion from int to Decimal
generates the following output. It displays the Decimal value
and its binary representation.
int argument Decimal value bits[3] bits[2] bits[1] bits[0]
------------ ------------- ------- ------- ------- -------
-2147483648 -2147483648 80000000 00000000 00000000 80000000
2147483647 2147483647 00000000 00000000 00000000 7FFFFFFF
16777215 16777215 00000000 00000000 00000000 00FFFFFF
123456789 123456789 00000000 00000000 00000000 075BCD15
-1000000000 -1000000000 80000000 00000000 00000000 3B9ACA00
*/
[JScript] JScript のサンプルはありません。Visual Basic、C#、および C++ のサンプルを表示するには、このページの左上隅にある言語のフィルタ ボタン をクリックします。
必要条件
プラットフォーム: Windows 98, Windows NT 4.0, Windows Millennium Edition, Windows 2000, Windows XP Home Edition, Windows XP Professional, Windows Server 2003 ファミリ, .NET Compact Framework - Windows CE .NET, Common Language Infrastructure (CLI) Standard