当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


Ruby BigDecimal nonzero?用法及代码示例


BigDecimal#nonzero?():nonzero?()是BigDecimal类方法,它检查BigDecimal值是否为非零。

用法: BigDecimal.nonzero?()

参数:要检查的BigDecimal值


返回:self:如果值非零;否则为零

代码1:非零示例?

# Ruby code for nonzero?() method 
  
# loading BigDecimal 
require 'bigdecimal'
  
# declaring BigDecimal 
a = 42.1**13
  
# declaring BigDecimal 
b = -BigDecimal("10") 
  
# declaring BigDecimal 
c = -(22 ** 7.1) * 10
  
puts "nonzero? example 1:#{a.nonzero?()}\n\n"
  
puts "nonzero? example 2:#{b.nonzero?()}\n\n"
  
puts "nonzero? example 3:#{c.nonzero?()}\n\n"
     

输出:

nonzero? example 1:1.3051704902006439e+21

nonzero? example 2:-0.1E2

nonzero? example 3:-33978252067.813686

代码2:非零示例?

# Ruby code for nonzero?() method 
  
# loading BigDecimal 
require 'bigdecimal'
  
# declaring BigDecimal 
b = BigDecimal('10')-(22 ** 7.1) ** 10
  
# declaring BigDecimal 
c = BigDecimal('-3') 
  
  
puts "nonzero? example 2:#{b.nonzero?()}\n\n"
  
puts "nonzero? example 3:#{c.nonzero?()}\n\n"

输出:

nonzero? example 2:-0.20512110073058639999999999999999999999999999999999999999999999999999999999999999999999999999999E96

nonzero? example 3:-0.3E1



相关用法


注:本文由纯净天空筛选整理自mayank5326大神的英文原创作品 Ruby | BigDecimal class nonzero? value。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。