當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


Ruby DateTime to_time()用法及代碼示例


DateTime#to_time():to_time()是DateTime類方法,該方法返回表示DateTime對象自身的時間對象。

用法:DateTime.to_time()

參數:日期時間值


返回:複製DateTime對象自身並重置其to_time。

示例1:

# Ruby code for DateTime.to_time() 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)) 
  
  
#  to_time method 
puts "DateTime to_time form : #{date_a.to_time}\n\n"
  
puts "DateTime to_time form : #{date_b.to_time}\n\n"
  
puts "DateTime to_time form : #{date_c.to_time}\n\n"

輸出:

DateTime to_time form : 2019-08-10 06:10:09 +0200

DateTime to_time form : 2019-08-10 14:00:00 +0200

DateTime to_time form : 2019-08-10 02:10:09 +0200

示例2:

# Ruby code for DateTime.to_time() 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') 
  
  
#  to_time method 
puts "DateTime to_time form : #{date_a.to_time}\n\n"
  
puts "DateTime to_time form : #{date_b.to_time}\n\n"
  
puts "DateTime to_time form : #{date_c.to_time}\n\n"

輸出:

DateTime to_time form : 2019-08-10 07:00:00 +0200

DateTime to_time form : 2018-08-10 01:40:06 +0200

DateTime to_time form : 2019-08-10 03:10:09 +0200



相關用法


注:本文由純淨天空篩選整理自mayank5326大神的英文原創作品 Ruby | DateTime to_time() function。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。