Ruby 时间 month()函数

Ruby 时间 month()函数

month() 是Ruby中的一个内置方法,用于返回时间的年份的月份。

语法 :time.month()

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

返回值 :它返回一年中的某个月份的时间。

例子 1 :

# Ruby code for month() method
  
# Include Time
require 'time'
  
# Declaring time 
a = Time.new(2000, 12, 23)
  
# Prints the month of the year for the time
puts a.month()

输出:

12

例2 :

# Ruby code for month() method
  
# Include Time
require 'time'
  
# Declaring time 
a = Time.now()
  
# Prints the month of the year for the time
puts a.month()

输出:

8

Python教程

Java教程

Web教程

数据库教程

图形图像教程

大数据教程

开发工具教程

计算机教程