negative?()是Ruby中的内置函数,如果有理数小于零,则返回布尔值true,否则返回false。
用法: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
相关用法
- Ruby Rational quo()用法及代码示例
- Ruby Rational abs()用法及代码示例
- Ruby Rational inspect()用法及代码示例
- Ruby Rational positive?()用法及代码示例
- Ruby Rational to_f()用法及代码示例
- Ruby Rational ceil()用法及代码示例
- Ruby Rational numerator()用法及代码示例
- Ruby Rational denominator()用法及代码示例
- Ruby Rational rationalize()用法及代码示例
- Ruby Rational round()用法及代码示例
- Ruby Rational to_i()用法及代码示例
- Ruby Rational floor()用法及代码示例
- Ruby Rational fdiv()用法及代码示例
注:本文由纯净天空筛选整理自gopaldave大神的英文原创作品 Ruby | Rational negative?() function。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。