Math.BigMul メソッド
定義
重要
一部の情報は、リリース前に大きく変更される可能性があるプレリリースされた製品に関するものです。 Microsoft は、ここに記載されている情報について、明示または黙示を問わず、一切保証しません。
オーバーロード
BigMul(UInt64, UInt64, UInt64) |
2 つの符号なし 64 ビット数値の完全積を生成します。 |
BigMul(Int64, Int64, Int64) |
2 つの 64 ビット数値の完全な積を生成します。 |
BigMul(UInt64, UInt64) |
2 つの符号なし 64 ビット数値の完全積を生成します。 |
BigMul(Int32, Int32) |
2 つの 32 ビット数値の完全な積を生成します。 |
BigMul(Int64, Int64) |
2 つの 64 ビット数値の完全な積を生成します。 |
BigMul(UInt32, UInt32) |
2 つの符号なし 32 ビット数値の完全積を生成します。 |
BigMul(UInt64, UInt64, UInt64)
- ソース:
- Math.cs
- ソース:
- Math.cs
- ソース:
- Math.cs
重要
この API は CLS 準拠ではありません。
2 つの符号なし 64 ビット数値の完全積を生成します。
public:
static System::UInt64 BigMul(System::UInt64 a, System::UInt64 b, [Runtime::InteropServices::Out] System::UInt64 % low);
[System.CLSCompliant(false)]
public static ulong BigMul (ulong a, ulong b, out ulong low);
[<System.CLSCompliant(false)>]
static member BigMul : uint64 * uint64 * uint64 -> uint64
Public Shared Function BigMul (a As ULong, b As ULong, ByRef low As ULong) As ULong
パラメーター
- a
- UInt64
乗算する最初の数値。
- b
- UInt64
乗算する 2 番目の数値。
- low
- UInt64
このメソッドから制御が戻るときに、指定した数値の積の下位 64 ビットが格納されます。
戻り値
指定した数値の積の上位 64 ビット。
- 属性
適用対象
BigMul(Int64, Int64, Int64)
- ソース:
- Math.cs
- ソース:
- Math.cs
- ソース:
- Math.cs
2 つの 64 ビット数値の完全な積を生成します。
public:
static long BigMul(long a, long b, [Runtime::InteropServices::Out] long % low);
public static long BigMul (long a, long b, out long low);
static member BigMul : int64 * int64 * int64 -> int64
Public Shared Function BigMul (a As Long, b As Long, ByRef low As Long) As Long
パラメーター
- a
- Int64
乗算する最初の数値。
- b
- Int64
乗算する 2 番目の数値。
- low
- Int64
このメソッドから制御が戻るときに、指定した数値の積の下位 64 ビットが格納されます。
戻り値
指定した数値の積の上位 64 ビット。
適用対象
BigMul(UInt64, UInt64)
重要
この API は CLS 準拠ではありません。
2 つの符号なし 64 ビット数値の完全積を生成します。
public:
static UInt128 BigMul(System::UInt64 a, System::UInt64 b);
[System.CLSCompliant(false)]
public static UInt128 BigMul (ulong a, ulong b);
[<System.CLSCompliant(false)>]
static member BigMul : uint64 * uint64 -> UInt128
Public Shared Function BigMul (a As ULong, b As ULong) As UInt128
パラメーター
- a
- UInt64
乗算する最初の数値。
- b
- UInt64
乗算する 2 番目の数値。
戻り値
指定した数値の完全な積。
- 属性
適用対象
BigMul(Int32, Int32)
- ソース:
- Math.cs
- ソース:
- Math.cs
- ソース:
- Math.cs
2 つの 32 ビット数値の完全な積を生成します。
public:
static long BigMul(int a, int b);
public static long BigMul (int a, int b);
static member BigMul : int * int -> int64
Public Shared Function BigMul (a As Integer, b As Integer) As Long
パラメーター
- a
- Int32
乗算する最初の数値。
- b
- Int32
乗算する 2 番目の数値。
戻り値
指定した数値の積を含む番号。
例
次の例は、BigMul メソッドを使用して 2 つの整数値の積を計算する方法を示しています。
// This example demonstrates Math.BigMul()
using namespace System;
int main()
{
int int1 = Int32::MaxValue;
int int2 = Int32::MaxValue;
Int64 longResult;
//
longResult = Math::BigMul( int1, int2 );
Console::WriteLine( "Calculate the product of two Int32 values:" );
Console::WriteLine( "{0} * {1} = {2}", int1, int2, longResult );
}
/*
This example produces the following results:
Calculate the product of two Int32 values:
2147483647 * 2147483647 = 4611686014132420609
*/
// This example demonstrates Math.BigMul()
using System;
class Sample
{
public static void Main()
{
int int1 = Int32.MaxValue;
int int2 = Int32.MaxValue;
long longResult;
//
longResult = Math.BigMul(int1, int2);
Console.WriteLine("Calculate the product of two Int32 values:");
Console.WriteLine("{0} * {1} = {2}", int1, int2, longResult);
}
}
/*
This example produces the following results:
Calculate the product of two Int32 values:
2147483647 * 2147483647 = 4611686014132420609
*/
// This example demonstrates Math.BigMul()
open System
let int1 = Int32.MaxValue
let int2 = Int32.MaxValue
let longResult = Math.BigMul(int1, int2)
printfn "Calculate the product of two Int32 values:"
printfn $"{int1} * {int2} = {longResult}"
// This example produces the following results:
// Calculate the product of two Int32 values:
// 2147483647 * 2147483647 = 4611686014132420609
' This example demonstrates Math.BigMul()
Class Sample
Public Shared Sub Main()
Dim int1 As Integer = Int32.MaxValue
Dim int2 As Integer = Int32.MaxValue
Dim longResult As Long
'
longResult = Math.BigMul(int1, int2)
Console.WriteLine("Calculate the product of two Int32 values:")
Console.WriteLine("{0} * {1} = {2}", int1, int2, longResult)
End Sub
End Class
'
'This example produces the following results:
'Calculate the product of two Int32 values:
'2147483647 * 2147483647 = 4611686014132420609
'
適用対象
BigMul(Int64, Int64)
BigMul(UInt32, UInt32)
重要
この API は CLS 準拠ではありません。
2 つの符号なし 32 ビット数値の完全積を生成します。
public:
static System::UInt64 BigMul(System::UInt32 a, System::UInt32 b);
[System.CLSCompliant(false)]
public static ulong BigMul (uint a, uint b);
[<System.CLSCompliant(false)>]
static member BigMul : uint32 * uint32 -> uint64
Public Shared Function BigMul (a As UInteger, b As UInteger) As ULong
パラメーター
- a
- UInt32
乗算する最初の数値。
- b
- UInt32
乗算する 2 番目の数値。
戻り値
指定した数値の積を含む番号。
- 属性
適用対象
.NET