本文简要介绍ruby语言中 DateTime.new_offset
的用法。
用法
new_offset([offset=0]) → date
复制自我并重置其偏移量。
d = DateTime.new(2001,2,3,4,5,6,'-02:00')
#=> #<DateTime: 2001-02-03T04:05:06-02:00 ...>
d.new_offset('+09:00') #=> #<DateTime: 2001-02-03T15:05:06+09:00 ...>
相关用法
- Ruby DateTime.now用法及代码示例
- Ruby DateTime.hour用法及代码示例
- Ruby DateTime.jd用法及代码示例
- Ruby DateTime.zone用法及代码示例
- Ruby DateTime.second用法及代码示例
- Ruby DateTime.second_fraction用法及代码示例
- Ruby DateTime.sec用法及代码示例
- Ruby DateTime.xmlschema用法及代码示例
- Ruby DateTime.iso8601用法及代码示例
- Ruby DateTime.ordinal用法及代码示例
- Ruby DateTime.rfc3339用法及代码示例
- Ruby DateTime.httpdate用法及代码示例
- Ruby DateTime.rfc2822用法及代码示例
- Ruby DateTime.minute用法及代码示例
- Ruby DateTime.strftime用法及代码示例
- Ruby DateTime.sec_fraction用法及代码示例
- Ruby DateTime.jisx0301用法及代码示例
- Ruby DateTime.civil用法及代码示例
- Ruby DateTime.parse用法及代码示例
- Ruby DateTime.to_s用法及代码示例
- Ruby DateTime.min用法及代码示例
- Ruby DateTime.commercial用法及代码示例
- Ruby DateTime.strptime用法及代码示例
- Ruby DateTime.offset用法及代码示例
- Ruby DateTime jisx0301()用法及代码示例
注:本文由纯净天空筛选整理自ruby-lang.org大神的英文原创作品 DateTime.new_offset。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。