Ruby 有理数 negative?()函数
negative?() 是Ruby中的一个内置函数,如果有理数小于零,则返回布尔值为真,否则为假。
语法 : rat.negative?()
参数 :该函数不接受任何参数。
返回值 :如果有理数小于零,则返回布尔值true,否则返回false。
例子 1 :
# Ruby program for negative?() method
# Initialize rational number
rat1 = Rational(-2, 9)
# Prints the rational number
puts rat1.negative?()
输出:
true
例2 :
# Ruby program for negative?() method
# Initialize rational number
rat1 = Rational('1.23')
# Prints the rational number
puts rat1.negative?()
输出:
false