當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


Ruby BigDecimal to_s()用法及代碼示例


BigDecimal#to_s():to_s()是BigDecimal類方法,它以字符串形式返回Big decimal的值。

用法:BigDecimal.to_s()

參數:BigDecimal值


返回:大十進製值作為字符串。

示例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



相關用法


注:本文由純淨天空篩選整理自mayank5326大神的英文原創作品 Ruby | BigDecimal to_s() function。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。