Ruby 时间 day()函数 day() 是Ruby中的一个内置方法,用于返回时间的星期几。 语法 :time.day() 参数 :该函数不接受任何参数 返回值 :它返回时间的月份的天数。 例子 1 : # Ruby code for day() method # Include Time require 'time' # Declaring time a = Time.new(2000, 12, 23) # Prints the day of the month for the time puts a.day()RubyCopy 输出: 23RubyCopy 例2 : # Ruby code for day() method # Include Time require 'time' # Declaring time a = Time.now() # Prints the day of the month for the time puts a.day()RubyCopy 输出: 27RubyCopy