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


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。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。