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


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


此方法用於將兩個指定的十進製值相加。

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

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


返回值:a1和a2的十進製和。

異常:如果a1和a2的總和小於Decimal的最小可能值或大於Decimal的最大可能值,則此方法將給出OverflowException。

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

示例1:

// C# program to demonstrate the 
// Decimal.Add(Decimal, Decimal)  
// Method 
using System; 
using System.Globalization; 
  
class GFG { 
  
    // Main Method 
    public static void Main() 
    { 
        try { 
  
            // Declaring the decimal 
            // variables 
            Decimal a1 = .01m; 
            Decimal a2 = .03m; 
  
            // adding the two Decimal value 
            // using Add() method; 
            Decimal value = Decimal.Add(a1, a2); 
  
            // Display the sum 
            Console.WriteLine("Decimal Sum : {0}", 
                                           value); 
        } 
  
        catch (OverflowException e)  
        { 
            Console.Write("Exception Thrown: "); 
            Console.Write("{0}", e.GetType(), e.Message); 
        } 
    } 
}
輸出:
Decimal Sum : 0.04

示例2:對於OverflowException

// C# program to demonstrate the 
// Decimal.Add(Decimal, Decimal) 
// Method 
using System; 
using System.Globalization; 
  
class GFG { 
  
    // Main Method 
    public static void Main() 
    { 
        try { 
  
            // Declaring the decimal variables 
            Decimal a1 = 1.01m; 
            Decimal a2 = Decimal.MaxValue; 
  
            // adding the two Decimal value 
            // using Add() method; 
            Decimal value = Decimal.Add(a1, a2); 
  
            // Display the sum 
            Console.WriteLine("Decimal Sum : {0}", 
                                           value); 
        } 
  
        catch (OverflowException e)  
        { 
            Console.Write("Exception Thrown: "); 
            Console.Write("{0}", e.GetType(), e.Message); 
        } 
    } 
}
輸出:
Exception Thrown: System.OverflowException


相關用法


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