BigInteger.Subtract(BigInteger, BigInteger) Metode

Definisi

Mengurangi satu BigInteger nilai dari nilai lain dan mengembalikan hasilnya.

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

Parameter

left
BigInteger

Nilai yang akan dikurangi dari (minuend).

right
BigInteger

Nilai yang akan dikurangi (subtrahend).

Mengembalikan

Hasil pengurangan right dari left.

Keterangan

Bahasa yang tidak mendukung operator kustom dapat menggunakan Subtract metode untuk melakukan pengurangan menggunakan BigInteger nilai.

Metode Subtract ini adalah pengganti yang berguna untuk operator pengurangan saat membuat BigInteger instans variabel dengan menetapkan perbedaan yang dihasilkan dari pengurangan, seperti yang ditunjukkan dalam contoh berikut.

// 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);
' 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)

Berlaku untuk

Lihat juga