当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


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。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。