DateTime#hour():hour()是DateTime类方法,它从给定的DateTime对象返回小时,即从0到23。
用法:DateTime.hour()
参数:日期时间值
返回:小时,即从给定的DateTime对象的0到23
示例1:
# Ruby code for DateTime.hour() method
# loading library
require 'date'
# declaring DateTime value
date_a = DateTime.new(2019, 8, 10, 4, 10, 9)
# declaring DateTime value
date_b = DateTime.new(2019, 8, 10.5)
# declaring DateTime value
date_c = DateTime.new(2019, 8, 10, 4, 10, 9, Rational(4, 24))
# hour method
puts "DateTime hour form : #{date_a.hour}\n\n"
puts "DateTime hour form : #{date_b.hour}\n\n"
puts "DateTime hour form : #{date_c.hour}\n\n"
输出:
DateTime hour form : 4 DateTime hour form : 12 DateTime hour form : 4
示例2:
# Ruby code for DateTime.hour() method
# loading library
require 'date'
# declaring DateTime value
date_a = DateTime.new(2019, 8, 10, 5)
# declaring DateTime value
date_b = DateTime.parse('10 Aug 2018 04:10:06+04:30')
# declaring DateTime value
date_c = DateTime.new(2019, 8, 10, 4, 10, 9, '+03:00')
# hour method
puts "DateTime hour form : #{date_a.hour}\n\n"
puts "DateTime hour form : #{date_b.hour}\n\n"
puts "DateTime hour form : #{date_c.hour}\n\n"
输出:
DateTime hour form : 5 DateTime hour form : 4 DateTime hour form : 4
相关用法
- Ruby Time hour用法及代码示例
- Ruby DateTime second()用法及代码示例
- Ruby DateTime new()用法及代码示例
- Ruby DateTime now()用法及代码示例
- Ruby DateTime jd()用法及代码示例
- Ruby DateTime sec()用法及代码示例
- Ruby DateTime minute()用法及代码示例
- Ruby DateTime new_offset()用法及代码示例
- Ruby DateTime httpdate()用法及代码示例
- Ruby DateTime rfc3339()用法及代码示例
- Ruby DateTime offset()用法及代码示例
- Ruby DateTime sec_fraction()用法及代码示例
- Ruby DateTime rfc2822()用法及代码示例
- Ruby DateTime parse()用法及代码示例
- Ruby DateTime to_s()用法及代码示例
注:本文由纯净天空筛选整理自mayank5326大神的英文原创作品 Ruby | DateTime hour() function。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。