Ruby 数值 real?函数
real?() 是Ruby中一个内置的方法,用于返回一个布尔值。如果数字是负数,它就返回真,否则就返回假。
语法 :num.real?()
参数 :该函数需要一个要被检查的数字。
返回值 :它将返回一个布尔值。
例子 1 :
# Ruby program for real?()
# method in Numeric
# Initialize a number
num1 = 10
# Prints real or not
puts num1.real?()
输出:
true
例2 :
# Ruby program for real?()
# method in Numeric
# Initialize a number
num1 = Complex(12, 3)
# Prints real or not
puts num1.real?()
输出:
false