BigInteger.Modulus(BigInteger, BigInteger) Operator
Definicja
Ważne
Niektóre informacje odnoszą się do produktu w wersji wstępnej, który może zostać znacząco zmodyfikowany przed wydaniem. Firma Microsoft nie udziela żadnych gwarancji, jawnych lub domniemanych, w odniesieniu do informacji podanych w tym miejscu.
Zwraca resztę, która wynika z dzielenia z dwiema określonymi BigInteger wartościami.
public:
static System::Numerics::BigInteger operator %(System::Numerics::BigInteger dividend, System::Numerics::BigInteger divisor);
public:
static System::Numerics::BigInteger operator %(System::Numerics::BigInteger dividend, System::Numerics::BigInteger divisor) = System::Numerics::IModulusOperators<System::Numerics::BigInteger, System::Numerics::BigInteger, System::Numerics::BigInteger>::op_Modulus;
public static System.Numerics.BigInteger operator % (System.Numerics.BigInteger dividend, System.Numerics.BigInteger divisor);
static member ( % ) : System.Numerics.BigInteger * System.Numerics.BigInteger -> System.Numerics.BigInteger
Public Shared Operator Mod (dividend As BigInteger, divisor As BigInteger) As BigInteger
Parametry
- dividend
- BigInteger
Wartość, która ma zostać podzielona.
- divisor
- BigInteger
Wartość do dzielenia według.
Zwraca
Pozostała część, która wynika z podziału.
Implementuje
Wyjątki
divisor
ma wartość 0 (zero).
Uwagi
Metoda Modulus definiuje operację operatora modulu dla BigInteger wartości. Umożliwia stosowanie kodu takiego jak następujący:
BigInteger num1 = 100045632194;
BigInteger num2 = 90329434;
BigInteger remainder = num1 % num2;
Console.WriteLine(remainder); // Displays 50948756
let num1 = 100045632194I
let num2 = 90329434I
let remainder = num1 % num2
printfn $"{remainder}" // Displays 50948756
Dim num1 As BigInteger = 100045632194
Dim num2 As BigInteger = 90329434
Dim remainder As BigInteger = num1 Mod num2
Console.WriteLine(remainder) ' Displays 50948756
Języki, które nie obsługują operatorów niestandardowych, mogą zamiast tego wywoływać metodę BigInteger.Remainder .
Znak wartości zwracanej przez operację modulu zależy od znaku dividend
: Jeśli dividend
jest dodatni, operacja modulu zwraca wynik dodatni; jeśli jest ujemna, operacja modulu zwraca wynik ujemny. Zachowanie operacji modulu z wartościami jest identyczne z operacją BigInteger modulu z innymi typami całkowitymi.
Równoważną metodą dla tego operatora jest BigInteger.Remainder(BigInteger, BigInteger).