Ruby BigDecimal zero?() 函数
BigDecimal#zero?() : zero?()是BigDecimal类的一个方法,用于检查大十进制数值是否为零。
语法。BigDecimal.zero?()
参数。大十进制的值
返回:true – 如果大十进制的值是零,否则返回false
例子 #1 :
# Ruby code for BigDecimal.zero?() method
# loading library
require 'bigdecimal'
require 'bigdecimal/util'
# declaring bigdecimal
a = BigDecimal("10")
# declaring bigdecimal
b = -BigDecimal("10")
# declaring bigdecimal
c = -BigDecimal("11.43")
# zero?() method
puts "BigDecimal a zero? method : #{a.zero?()}\n\n"
puts "BigDecimal b zero? method : #{b.zero?()}\n\n"
puts "BigDecimal c zero? method : #{c.zero?()}\n\n"
输出:
BigDecimal a zero? method : false
BigDecimal b zero? method : false
BigDecimal c zero? method : false
例子 #2 :
# Ruby code for BigDecimal.zero?() method
# loading library
require 'bigdecimal'
require 'bigdecimal/util'
# declaring bigdecimal
a = BigDecimal('12')*12
# declaring bigdecimal
b = BigDecimal('10')-(22 ** 7.1) ** 10
# declaring bigdecimal
c = BigDecimal('0')
# zero?() method
puts "BigDecimal a zero? method : #{a.zero?()}\n\n"
puts "BigDecimal b zero? method : #{b.zero?()}\n\n"
puts "BigDecimal c zero? method : #{c.zero?()}\n\n"
输出:
BigDecimal a zero? method : false
BigDecimal b zero? method : false
BigDecimal c zero? method : true