Ruby BigDecimal to_f()函数

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

Python教程

Java教程

Web教程

数据库教程

图形图像教程

大数据教程

开发工具教程

计算机教程