Ruby BigDecimal to_f()函数
BigDecimal#to_f() : to_f()是BigDecimal类的一个方法,用于返回一个新的Float对象,其值与BigDecimal数字大致相同。
语法。BigDecimal.to_f()
参数。BigDecimal值
返回:一个新的Float对象,其值与BigDecimal数字大致相同。
例子 #1 :
# Ruby code for BigDecimal.to_f() method
# loading library
require 'bigdecimal'
require 'bigdecimal/util'
# declaring bigdecimal
a = BigDecimal("10")
# declaring bigdecimal
b = -BigDecimal("10")
# declaring bigdecimal
c = -BigDecimal("11.43")
# to_f() method
puts "BigDecimal a to_f method : #{a.to_f()}\n\n"
puts "BigDecimal b to_f method : #{b.to_f()}\n\n"
puts "BigDecimal c to_f method : #{c.to_f()}\n\n"
输出:
BigDecimal a to_f method : 10.0
BigDecimal b to_f method : -10.0
BigDecimal c to_f method : -11.43
例子 #2 :
# Ruby code for BigDecimal.to_f() method
# loading library
require 'bigdecimal'
require 'bigdecimal/util'
# declaring bigdecimal
a = BigDecimal('12')*12
# declaring bigdecimal
b = BigDecimal('10')-(22 ** 7.1) ** 10
# declaring bigdecimal
c = BigDecimal('-3')
# to_f() method
puts "BigDecimal a to_f method : #{a.to_f()}\n\n"
puts "BigDecimal b to_f method : #{b.to_f()}\n\n"
puts "BigDecimal c to_f method : #{c.to_f()}\n\n"
输出:
BigDecimal a to_f method : 144.0
BigDecimal b to_f method : -2.051211007305864e+95
BigDecimal c to_f method : -3.0