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