Ruby 时间 saturday?() 函数
saturday?() 是Ruby中一个内置的方法,如果时间代表星期六,则返回真,否则返回假。
语法 :time.saturday?()
参数 :该函数不接受任何参数
返回值 :如果时间代表星期六,它将返回真,否则返回假。
例子 1 :
# Ruby code for saturday?() method
# Include Time
require 'time'
# Declaring time
a = Time.new(2000, 12, 23)
# Prints boolean value
puts a.saturday?()
输出:
true
例2 :
# Ruby code for saturday?() method
# Include Time
require 'time'
# Declaring time
a = Time.now()
# Prints boolean value
puts a.saturday?()
输出:
false