Float nan?()是一個浮點類方法,用於檢查值是否為“非數字”。 “非數字”表示IEEE浮點數無效。
用法:float.nan?()
參數:要傳遞的浮點值
返回:返回true-如果值是“非數字”,否則返回false
範例1:
# Ruby program for nan?() method
# Initializing value
a = 0.0
b = 0.0.modulo(4.0)
# Printing result
puts "a is not_a_number:#{a.nan?}\n\n"
puts "b is not_a_number:#{b.nan?}\n\n"
輸出:
a is not_a_number:false b is not_a_number:false
範例2:
# Ruby program for nan?() method
# Initializing value
a = 26.00
b = 8.0
# Printing Result
puts "a is not_a_number:#{a.nan?}\n\n"
puts "b is not_a_number:#{b.nan?}\n\n"
輸出:
a is not_a_number:false b is not_a_number:false
相關用法
- Ruby Float eql()用法及代碼示例
- Ruby Float arg()用法及代碼示例
- Ruby Float zero?()用法及代碼示例
- Ruby Float quo()用法及代碼示例
- Ruby Float next_float()用法及代碼示例
- Ruby Float numerator()用法及代碼示例
- Ruby Float divmod()用法及代碼示例
- Ruby Float angle()用法及代碼示例
- Ruby Float rationalize()用法及代碼示例
- Ruby Float absolute()用法及代碼示例
- Ruby Float phase()用法及代碼示例
- Ruby Float positive()用法及代碼示例
- Ruby Float prev_float()用法及代碼示例
- Ruby Float fdiv()用法及代碼示例
- Ruby Float denominator()用法及代碼示例
注:本文由純淨天空篩選整理自mayank5326大神的英文原創作品 Ruby Float nan?() method with example。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。