BigDecimal#nan?():nan?()是BigDecimal類方法,用於檢查BigDecimal值是否為nan值。
用法: BigDecimal.nan?()
參數:要檢查有關NaN值的BigDecimal值。
返回:true:如果值是NaN值;否則為假
代碼#1:nan?()方法的示例
# Ruby code for nan?() method
# loading BigDecimal
require 'bigdecimal'
# declaring BigDecimal
a = 42.1**13
# declaring BigDecimal
b = -BigDecimal("10")
# declaring BigDecimal
c = -(22 ** 7.1) * 10
puts "nan? example 1:#{a.nan?()}\n\n"
puts "nan? example 2:#{b.nan?()}\n\n"
puts "nan? example 3:#{c.nan?()}\n\n"
輸出:
nan? example 1:false nan? example 2:false nan? example 3:false
代碼#2:nan?()方法的示例
# Ruby code for nan?() method
# loading BigDecimal
require 'bigdecimal'
# declaring BigDecimal
b = BigDecimal('10')-(22 ** 7.1) ** 10
# declaring BigDecimal
c = BigDecimal('-3')
puts "nan? example 2:#{b.nan?()}\n\n"
puts "nan? example 3:#{c.nan?()}\n\n"
輸出:
nan? example 2:false nan? example 3:false
相關用法
- Ruby BigDecimal dup用法及代碼示例
- Ruby BigDecimal eql?用法及代碼示例
- Ruby BigDecimal div用法及代碼示例
- Ruby BigDecimal modulo用法及代碼示例
- Ruby BigDecimal floor用法及代碼示例
- Ruby BigDecimal power用法及代碼示例
- Ruby BigDecimal frac用法及代碼示例
- Ruby BigDecimal nonzero?用法及代碼示例
- Ruby BigDecimal exponent用法及代碼示例
- Ruby BigDecimal inspect用法及代碼示例
- Ruby BigDecimal infinite?用法及代碼示例
- Ruby BigDecimal ceil用法及代碼示例
- Ruby BigDecimal absolute用法及代碼示例
- Ruby BigDecimal coerce用法及代碼示例
注:本文由純淨天空篩選整理自mayank5326大神的英文原創作品 Ruby | BigDecimal class nan? value。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。