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