Ruby Range exclude_end?函数
exclude_end?() 是Ruby中的一个内置方法,如果该范围不包括其结束值,则返回布尔值true,否则返回false。
语法 :range1.exclude_end?
参数 :该函数不接受任何参数
返回值 : 如果该范围不包括其结束值,则返回布尔值 true,否则返回 false。
例子 1 :
# Ruby program for exclude_end?()
# method in Range
# Initialize range
range1 = (0...10)
# Prints the boolean value
puts range1.exclude_end?
输出:
true
例2 :
# Ruby program for exclude_end?()
# method in Range
# Initialize range
range1 = (0..10)
# Prints the boolean value
puts range1.exclude_end?
输出:
false