BigDecimal#to_f() : to_f() es un método de clase BigDecimal que devuelve un nuevo objeto Float que tiene aproximadamente el mismo valor que el número BigDecimal.
Sintaxis: BigDecimal.to_f()
Parámetro: valores BigDecimal
Retorno: un nuevo objeto Flotante que tiene aproximadamente el mismo valor que el número BigDecimal.
Ejemplo 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"
Producción :
BigDecimal a to_f method : 10.0 BigDecimal b to_f method : -10.0 BigDecimal c to_f method : -11.43
Ejemplo #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"
Producción :
BigDecimal a to_f method : 144.0 BigDecimal b to_f method : -2.051211007305864e+95 BigDecimal c to_f method : -3.0
Publicación traducida automáticamente
Artículo escrito por mayank5326 y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA