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
相关用法
- Ruby BigDecimal eql?用法及代码示例
- Ruby BigDecimal div用法及代码示例
- Ruby BigDecimal nan?用法及代码示例
- Ruby BigDecimal dup用法及代码示例
- Ruby BigDecimal clone用法及代码示例
- Ruby BigDecimal exponent用法及代码示例
- Ruby BigDecimal infinite?用法及代码示例
- Ruby BigDecimal divmod用法及代码示例
- Ruby BigDecimal ceil用法及代码示例
- Ruby BigDecimal absolute用法及代码示例
- Ruby BigDecimal coerce用法及代码示例
- Ruby BigDecimal frac用法及代码示例
- Ruby BigDecimal modulo用法及代码示例
- Ruby BigDecimal nonzero?用法及代码示例
注:本文由纯净天空筛选整理自mayank5326大神的英文原创作品 Ruby | BigDecimal class finite? value。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。