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


Ruby BigDecimal finite?用法及代码示例


BigDecimal#finite?():finite?()是BigDecimal类方法,用于检查BigDecimal值是否为有限值。

用法: BigDecimal.finite?()

参数:要检查的BigDecimal值


返回:true-如果值是有限的;否则为假

代码#1:有限方法的示例

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

输出:

finite? example 1:true

finite? example 2:true

finite? example 3:true

代码2:有限()方法示例

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

输出:

finite? example 2:true

finite? example 3:true


相关用法


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