BigInteger.Subtract(BigInteger, BigInteger) Metoda
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.
Odejmuje jedną BigInteger wartość z innej i zwraca wynik.
public:
static System::Numerics::BigInteger Subtract(System::Numerics::BigInteger left, System::Numerics::BigInteger right);
public static System.Numerics.BigInteger Subtract (System.Numerics.BigInteger left, System.Numerics.BigInteger right);
static member Subtract : System.Numerics.BigInteger * System.Numerics.BigInteger -> System.Numerics.BigInteger
Public Shared Function Subtract (left As BigInteger, right As BigInteger) As BigInteger
Parametry
- left
- BigInteger
Wartość do odejmowania od (minuend).
- right
- BigInteger
Wartość do odejmowania (odejmowana).
Zwraca
Wynik odejmowania right
od .left
Uwagi
Języki, które nie obsługują operatorów niestandardowych, mogą używać Subtract metody do odejmowania przy użyciu BigInteger wartości.
Metoda Subtract jest użytecznym substytutem operatora odejmowania podczas tworzenia wystąpienia BigInteger zmiennej, przypisując mu różnicę wynikającą z odejmowania, jak pokazano w poniższym przykładzie.
// The statement
// BigInteger number = Int64.MinValue - Int64.MaxValue;
// produces compiler error CS0220: The operation overflows at compile time in checked mode.
// The alternative:
BigInteger number = BigInteger.Subtract(Int64.MinValue, Int64.MaxValue);
let number = BigInteger.Subtract(Int64.MinValue, Int64.MaxValue);
' The statement
' Dim number As BigInteger = Int64.MinValue - Int64.MaxValue
' produces compiler error BC30439: Constant expression not representable in type 'Long'.
' The alternative:
Dim number As BigInteger = BigInteger.Subtract(Int64.MinValue, Int64.MaxValue)