Decimal.Decrement(Decimal) Operator
Definisi
Penting
Beberapa informasi terkait produk prarilis yang dapat diubah secara signifikan sebelum dirilis. Microsoft tidak memberikan jaminan, tersirat maupun tersurat, sehubungan dengan informasi yang diberikan di sini.
Mengurangi pengoperasian Decimal satu per satu.
public:
static System::Decimal operator --(System::Decimal d);
public:
static System::Decimal operator --(System::Decimal d) = System::Numerics::IDecrementOperators<System::Decimal>::op_Decrement;
public static decimal operator -- (decimal d);
static member op_Decrement : decimal -> decimal
Public Shared op_Decrement (d As Decimal) As Decimal
Parameter
- d
- Decimal
Nilai untuk penurunan.
Mengembalikan
Nilai yang d
direkrementasi sebesar 1.
Penerapan
Pengecualian
Nilai yang dikembalikan kurang dari Decimal.MinValue atau lebih besar dari Decimal.MaxValue.
Keterangan
Metode mendefinisikan Decrement pengoperasian operator penurunan untuk Decimal nilai. Ini memungkinkan kode seperti berikut:
using System;
public class Example
{
public static void Main()
{
Decimal number = 1079.8m;
Console.WriteLine("Original value: {0:N}", number);
Console.WriteLine("Decremented value: {0:N}", --number);
}
}
// The example displays the following output:
// Original value: 1,079.80
// Decremented value: 1,078.80
let number = 1079.8m
printfn $"Original value: {number:N}"
printfn $"Decremented value: {- -number:N}"
// The example displays the following output:
// Original value: 1,079.80
// Decremented value: 1,078.80
Beberapa bahasa (seperti Visual Basic) yang tidak memiliki operator kenaikan dapat memanggil metode secara Decrement langsung, seperti yang ditunjukkan contoh berikut.
Module Example
Public Sub Main()
Dim number As Decimal = 1079.8d
Console.WriteLine("Original value: {0:N}", number)
Console.WriteLine("Decremented value: {0:N}", Decimal.op_Decrement(number))
End Sub
End Module
' The example displays the following output:
' Original value: 1,079.80
' Decremented value: 1,078.80
Jika bahasa Anda tidak mendukung operator kustom, panggil metode sebagai gantinya Subtract , seperti yang ditunjukkan contoh berikut.
using System;
public class Example
{
public static void Main()
{
Decimal number = 1079.8m;
Console.WriteLine("Original value: {0:N}", number);
Console.WriteLine("Decremented value: {0:N}", Decimal.Subtract(number, 1));
}
}
// The example displays the following output:
// Original value: 1,079.80
// Decremented value: 1,078.80
open System
let number = 1079.8m
printfn $"Original value: {number:N}"
printfn $"Decremented value: {Decimal.Subtract(number, 1):N}"
// The example displays the following output:
// Original value: 1,079.80
// Decremented value: 1,078.80
Module Example
Public Sub Main()
Dim number As Decimal = 1079.8d
Console.WriteLine("Original value: {0:N}", number)
Console.WriteLine("Decremented value: {0:N}", Decimal.Subtract(number, 1))
End Sub
End Module
' The example displays the following output:
' Original value: 1,079.80
' Decremented value: 1,078.80