📜  C#中的Decimal.Truncate()方法

📅  最后修改于: 2021-05-29 15:27:27             🧑  作者: Mango

此方法用于通过舍弃任何小数位数来获取指定小数的整数位数。此方法通过删除小数点后的数字将指定的值四舍五入为最接近的整数。

例子:

// C# program to demonstrate the
// Decimal.Truncate(Decimal) Method
using System;
  
class GFG {
  
    // Main Method
    public static void Main()
    {
        try {
  
            // Taking decimal variables
            // having fractional part
            Decimal dec1 = 214748.78549M;
            Decimal dec2 = 21458565.2996m;
  
            // using Decimal.Truncate(Decimal) Method
            Decimal val1 = Decimal.Truncate(dec1);
  
            // using Decimal.Truncate(Decimal) Method
            Decimal val2 = Decimal.Truncate(dec2);
  
            // Printing the Integral part only
            Console.WriteLine("The integral part of "+
                                "dec1 is: {0}", val1);
  
            Console.WriteLine("The integral part of "+
                                "dec2 is: {0}", val2);
        }
  
        catch (OverflowException e) {
            Console.Write("Exception Thrown: ");
            Console.Write("{0}", e.GetType(), e.Message);
        }
    }
}
输出:
The integral part of dec1 is: 214748
The integral part of dec2 is: 21458565

参考:

  • https://docs.microsoft.com/zh-cn/dotnet/api/system.decimal.truncate?view=netframework-4.7.2