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


Ruby BigDecimal coerce用法及代码示例


BigDecimal#coerce():coerce()是BigDecimal类方法,它返回传递的BigDecimal值的ceil值。

用法: BigDecimal.coerce()

参数:数值(可以是整数,也可以是BigDecimal值)


返回:一个以BigDecimal对象的形式表示的同时具有BigDecimal和数值的数组。

代码#1:coerce()方法示例

# Ruby code for coerce() method 
  
# loading BigDecimal 
require 'bigdecimal'
  
# declaring BigDecimal 
a = 42.1**13
  
# declaring BigDecimal 
b = -BigDecimal("10") 
  
# declaring BigDecimal 
c = -(22 ** 7.1) * 10
  
puts "coerce example 1:#{a.coerce(b)}\n\n"
  
puts "coerce example 2:#{b.coerce(c)}\n\n"

输出:

coerce example 1:[-10.0, 1.3051704902006439e+21]

coerce example 2:[#, #]

代码2:coerce()方法示例

# Ruby code for coerce() method 
  
# loading BigDecimal 
require 'bigdecimal'
  
# declaring BigDecimal 
a = 12**12 - 27
  
# declaring BigDecimal 
b = BigDecimal('10')-(22 ** 7.1) ** 10
  
# declaring BigDecimal 
c = BigDecimal('-3') 
  
puts "coerce example 1:#{a.coerce(b)}\n\n"
  
puts "coerce example 2:#{b.coerce(c)}\n\n"

输出:

coerce example 1:[-2.051211007305864e+95, 8916100448229.0]

coerce example 2:[#, #]


相关用法


注:本文由纯净天空筛选整理自mayank5326大神的英文原创作品 Ruby | BigDecimal class coerce value。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。