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

📅  最后修改于: 2021-05-29 17:16:37             🧑  作者: Mango

此方法用于将指定的Decimal的值转换为等效的单精度浮点数。此方法可能会产生舍入错误,因为单精度浮点数的有效位数比十进制数少。

例子:

// C# program to demonstrate the
// Decimal.ToSingle(Decimal) Method
using System;
  
class GFG {
  
    // Main Method
    public static void Main()
    {
        try {
  
            // Taking decimal variables
            Decimal dec1 = 0.0000000000134563456789M;
            Decimal dec2 = 4589662514452860951234M;
  
            // using ToSingle(Decimal) Method
            float val1 = Decimal.ToSingle(dec1);
  
            // using ToSingle(Decimal) Method
            float val2 = Decimal.ToSingle(dec2);
  
            // Printing the float value
            Console.WriteLine("The float value "
                             + "is : {0}", val1);
                                
  
            // Printing the float value
            Console.WriteLine("The float value "
                            + "is : {0}", val2);
                               
        }
  
        catch (OverflowException e) 
        {
            Console.Write("Exception Thrown: ");
            Console.Write("{0}", e.GetType(), e.Message);
        }
    }
}
输出:
The float value is : 1.345635E-11
The float value is : 4.589663E+21

参考:

  • https://docs.microsoft.com/zh-cn/dotnet/api/system.decimal.tosingle?view=netcore-2.2