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]