Ruby 时间 sunday?() 函数

Ruby 时间 sunday?() 函数

sunday?() 是Ruby中的一个内置方法,如果时间代表星期日,则返回真,否则返回假。

语法 :time.sunday?()

参数 :该函数不接受任何参数

返回值 :如果时间代表星期天,则返回真,否则返回假。

例子 1 :

# Ruby code for sunday?() method
  
# Include Time
require 'time'
  
# Declaring time 
a = Time.new(2000, 12, 23)
  
# Prints boolean value
puts a.sunday?()

输出:

false

例2 :

# Ruby code for sunday?() method
  
# Include Time
require 'time'
  
# Declaring time 
a = Time.now()
  
# Prints boolean value
puts a.sunday?()

输出:

false

Python教程

Java教程

Web教程

数据库教程

图形图像教程

大数据教程

开发工具教程

计算机教程