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


Ruby BigDecimal precs用法及代碼示例


BigDecimal#precs():precs()是BigDecimal類方法,用於檢查BigDecimal值是否為nan值。

用法:BigDecimal.precs()

參數:要檢查有關NaN值的BigDecimal值。


返回:true:如果值是NaN值,否則返回false

示例1:

# Ruby code for precs() method 
  
# loading BigDecimal 
require 'bigdecimal'
  
# declaring BigDecimal 
a = BigDecimal('2') 
  
# declaring BigDecimal 
b = BigDecimal("100") 
  
# declaring BigDecimal 
c = BigDecimal("10 * 20") 
  
# precs() method 
puts "precs example 1 : #{a.precs()}\n\n"
  
puts "precs example 2 : #{b.precs()}\n\n"

輸出:

precs example 1 : [9, 18]

precs example 2 : [9, 18]

示例2:

# Ruby code for precs() method 
  
# loading BigDecimal 
require 'bigdecimal'
  
# declaring BigDecimal 
c = BigDecimal("10 * 20") 
  
# precs() method 
puts "precs example 2 : #{c.precs()}\n\n"

輸出:

precs example 2 : [9, 18]



相關用法


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