Ruby BigDecimal precs函数

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]

Python教程

Java教程

Web教程

数据库教程

图形图像教程

大数据教程

开发工具教程

计算机教程