BigDecimal#to_d() : to_d() es un método de clase BigDecimal que devuelve el yo de Big decimal.
Sintaxis: BigDecimal.to_d()
Parámetro: valores BigDecimal
Retorno: el yo de Gran decimal.
Ejemplo 1 :
# Ruby code for BigDecimal.to_d() 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_d() method puts "BigDecimal a to_d method : #{a.to_d()}\n\n" puts "BigDecimal b to_d method : #{b.to_d()}\n\n" puts "BigDecimal c to_d method : #{c.to_d()}\n\n"
Producción :
BigDecimal a to_d method : 0.1E2 BigDecimal b to_d method : -0.1E2 BigDecimal c to_d method : -0.1143E2
Ejemplo #2:
# Ruby code for BigDecimal.to_d() 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_d() method puts "BigDecimal a to_d method : #{a.to_d()}\n\n" puts "BigDecimal b to_d method : #{b.to_d()}\n\n" puts "BigDecimal c to_d method : #{c.to_d()}\n\n"
Producción :
BigDecimal a to_d method : 0.144E3 BigDecimal b to_d method : -0.20512110073058639999999999999999999999999999999999999999999999999999999999999999999999999999999E96 BigDecimal c to_d method : -0.3E1
Publicación traducida automáticamente
Artículo escrito por mayank5326 y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA