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
相关用法
- Ruby BigDecimal sub()用法及代码示例
- Ruby BigDecimal cos()用法及代码示例
- Ruby BigDecimal log()用法及代码示例
- Ruby BigDecimal quo()用法及代码示例
- Ruby BigDecimal zero?()用法及代码示例
- Ruby BigDecimal sin()用法及代码示例
- Ruby BigDecimal exp()用法及代码示例
- Ruby BigDecimal PI()用法及代码示例
- Ruby BigDecimal E()用法及代码示例
- Ruby BigDecimal split()用法及代码示例
- Ruby BigDecimal atan()用法及代码示例
- Ruby BigDecimal sqrt()用法及代码示例
- Ruby BigDecimal round()用法及代码示例
- Ruby BigDecimal remainder()用法及代码示例
- Ruby BigDecimal precs用法及代码示例
注:本文由纯净天空筛选整理自mayank5326大神的英文原创作品 Ruby | BigDecimal to_f() function。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。