Math.BigMul Methode
Definition
Wichtig
Einige Informationen beziehen sich auf Vorabversionen, die vor dem Release ggf. grundlegend überarbeitet werden. Microsoft übernimmt hinsichtlich der hier bereitgestellten Informationen keine Gewährleistungen, seien sie ausdrücklich oder konkludent.
Überlädt
BigMul(UInt64, UInt64, UInt64) |
Produziert das gesamte Produkt von zwei nicht signierten 64-Bit-Nummern. |
BigMul(Int64, Int64, Int64) |
Produziert das gesamte Produkt von zwei 64-Bit-Zahlen. |
BigMul(UInt64, UInt64) |
Produziert das gesamte Produkt von zwei nicht signierten 64-Bit-Nummern. |
BigMul(Int32, Int32) |
Produziert das gesamte Produkt von zwei 32-Bit-Zahlen. |
BigMul(Int64, Int64) |
Produziert das gesamte Produkt von zwei 64-Bit-Zahlen. |
BigMul(UInt32, UInt32) |
Produziert das vollständige Produkt von zwei nicht signierten 32-Bit-Nummern. |
BigMul(UInt64, UInt64, UInt64)
- Quelle:
- Math.cs
- Quelle:
- Math.cs
- Quelle:
- Math.cs
Wichtig
Diese API ist nicht CLS-kompatibel.
Produziert das gesamte Produkt von zwei nicht signierten 64-Bit-Nummern.
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
Parameter
- a
- UInt64
Die erste zahl, die multipliziert werden soll.
- b
- UInt64
Die zweite zahl, die multipliziert werden soll.
- low
- UInt64
Wenn diese Methode zurückgegeben wird, enthält die niedrige 64-Bit-Version des Produkts der angegebenen Zahlen.
Gibt zurück
Die hohe 64-Bit-Version des Produkts der angegebenen Zahlen.
- Attribute
Gilt für:
BigMul(Int64, Int64, Int64)
- Quelle:
- Math.cs
- Quelle:
- Math.cs
- Quelle:
- Math.cs
Produziert das gesamte Produkt von zwei 64-Bit-Zahlen.
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
Parameter
- a
- Int64
Die erste zahl, die multipliziert werden soll.
- b
- Int64
Die zweite zahl, die multipliziert werden soll.
- low
- Int64
Wenn diese Methode zurückgegeben wird, enthält die niedrige 64-Bit-Version des Produkts der angegebenen Zahlen.
Gibt zurück
Die hohe 64-Bit-Version des Produkts der angegebenen Zahlen.
Gilt für:
BigMul(UInt64, UInt64)
Wichtig
Diese API ist nicht CLS-kompatibel.
Produziert das gesamte Produkt von zwei nicht signierten 64-Bit-Nummern.
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
Parameter
- a
- UInt64
Die erste zahl, die multipliziert werden soll.
- b
- UInt64
Die zweite zahl, die multipliziert werden soll.
Gibt zurück
Das vollständige Produkt der angegebenen Nummern.
- Attribute
Gilt für:
BigMul(Int32, Int32)
- Quelle:
- Math.cs
- Quelle:
- Math.cs
- Quelle:
- Math.cs
Produziert das gesamte Produkt von zwei 32-Bit-Zahlen.
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
Parameter
- a
- Int32
Die erste zahl, die multipliziert werden soll.
- b
- Int32
Die zweite zahl, die multipliziert werden soll.
Gibt zurück
Die Nummer, die das Produkt der angegebenen Nummern enthält.
Beispiele
Im folgenden Beispiel wird die Verwendung der BigMul-Methode zum Berechnen des Produkts zweier ganzzahliger Werte veranschaulicht.
// 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
'
Gilt für:
BigMul(Int64, Int64)
Produziert das gesamte Produkt von zwei 64-Bit-Zahlen.
public:
static Int128 BigMul(long a, long b);
public static Int128 BigMul (long a, long b);
static member BigMul : int64 * int64 -> Int128
Public Shared Function BigMul (a As Long, b As Long) As Int128
Parameter
- a
- Int64
Die erste zahl, die multipliziert werden soll.
- b
- Int64
Die zweite zahl, die multipliziert werden soll.
Gibt zurück
Das vollständige Produkt der angegebenen Nummern.
Gilt für:
BigMul(UInt32, UInt32)
Wichtig
Diese API ist nicht CLS-kompatibel.
Produziert das vollständige Produkt von zwei nicht signierten 32-Bit-Nummern.
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
Parameter
- a
- UInt32
Die erste zahl, die multipliziert werden soll.
- b
- UInt32
Die zweite zahl, die multipliziert werden soll.
Gibt zurück
Die Nummer, die das Produkt der angegebenen Nummern enthält.
- Attribute