📜  红宝石 | BigDecimal to_s()函数

📅  最后修改于: 2022-05-13 01:54:44.316000             🧑  作者: Mango

红宝石 | BigDecimal to_s()函数

BigDecimal#to_s() : to_s()是一个 BigDecimal 类方法,它以字符串形式返回 Big Decimal 的值。

示例 #1:

# Ruby code for BigDecimal.to_s() 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_s() method
puts "BigDecimal a to_s method : #{a.to_s()}\n\n"
  
puts "BigDecimal b to_s method : #{b.to_s()}\n\n"
  
puts "BigDecimal c to_s method : #{c.to_s()}\n\n"

输出 :

BigDecimal a to_s method : 0.1E2

BigDecimal b to_s method : -0.1E2

BigDecimal c to_s method : -0.1143E2

示例 #2:

# Ruby code for BigDecimal.to_s() 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_s() method
puts "BigDecimal a to_s method : #{a.to_s()}\n\n"
  
puts "BigDecimal b to_s method : #{b.to_s()}\n\n"
  
puts "BigDecimal c to_s method : #{c.to_s()}\n\n"

输出 :

BigDecimal a to_s method : 0.144E3

BigDecimal b to_s method : -0.20512110073058639999999999999999999999999999999999999999999999999999999999999999999999999999999E96

BigDecimal c to_s method : -0.3E1