當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


C# Decimal.Compare()用法及代碼示例


此方法用於比較兩個指定的十進製值。

用法: public static int Compare (decimal a1, decimal a2);

參數:
a1:此參數指定要比較的第一個值。
a2:此參數指定要比較的第二個值。


返回值:返回一個帶符號的數字,指示a1和a2的相對值。

  • 如果該值小於零,則表示a1小於a2。
  • 如果該值大於零,則表示a1大於a2。
  • 如果該值為零,則表示a1等於a2。

以下示例程序旨在說明Decimal.Compare(Decimal,Decimal)方法的用法

示例1:當a1大於a2時。

// C# program to demonstrate the 
// Decimal.Compare(Decimal,  
// Decimal) Method 
using System; 
using System.Globalization; 
  
class GFG { 
  
    // Main Method 
    public static void Main() 
    { 
  
        // Declaring the decimal variables 
        Decimal a1 = 4; 
        Decimal a2 = 3; 
  
        // comparing the two Decimal value 
        // using Compare() method; 
        Decimal value = Decimal.Compare(a1, a2); 
  
        // Display the compare value 
        Console.WriteLine("The compare value is : {0}", 
                                                value); 
    } 
}
輸出:
The compare value is : 1

示例2:當a1小於a2時。

// C# program to demonstrate the 
// Decimal.Compare(Decimal, 
// Decimal) Method 
using System; 
using System.Globalization; 
  
class GFG { 
  
    // Main Method 
    public static void Main() 
    { 
  
        // Declaring the decimal variables 
        Decimal a1 = 1; 
        Decimal a2 = 9; 
  
        // comparing the two Decimal value 
        // using Compare() method; 
        Decimal value = Decimal.Compare(a1, a2); 
  
        // Display the compare value 
        Console.WriteLine("The compare value is : {0}", 
                                                value); 
    } 
}
輸出:
The compare value is : -1

示例3:當a1等於a2時。

// C# program to demonstrate the 
// Decimal.Compare(Decimal, 
// Decimal) Method 
using System; 
using System.Globalization; 
  
class GFG { 
  
    // Main Method 
    public static void Main() 
    { 
  
        // Declaring the decimal variables 
        Decimal a1 = 5; 
        Decimal a2 = 5; 
  
        // comparing the two Decimal value 
        // using Compare() method; 
        Decimal value = Decimal.Compare(a1, a2); 
  
        // Display the compare value 
        Console.WriteLine("The compare value is : {0}", 
                                                value); 
    } 
}
輸出:
The compare value is : 0


相關用法


注:本文由純淨天空篩選整理自IshwarGupta大神的英文原創作品 Decimal.Compare() Method in C#。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。