Date#asctime()是Date類方法,它以asctime格式返回字符串。它等效於strftime('%c')。這是經過天文數字修改的儒略日數。
用法:Date.asctime()
參數:日期值
返回:asctime格式的字符串。 strftime('%c')。經過天文數字修改的儒略日數。
示例1:
# Ruby code for Date.asctime() method
# loading date
require 'date'
# declaring Date
a = Date.new(2019, 1, 1)
# declaring Date
b = Date.jd(2452004)
# declaring Date
c = Date.ordinal(2019, 12)
# Date
puts "Date a : #{a}\n\n"
puts "Date b : #{b}\n\n"
puts "Date c : #{c}\n\n\n\n"
# asctime form
puts "Date a asctime form : #{a.asctime}\n\n"
puts "Date b asctime form : #{b.asctime}\n\n"
puts "Date c asctime form : #{c.asctime}\n\n"
輸出:
Date a : 2019-01-01 Date b : 2001-04-04 Date c : 2019-01-12 Date a asctime form : Tue Jan 1 00:00:00 2019 Date b asctime form : Wed Apr 4 00:00:00 2001 Date c asctime form : Sat Jan 12 00:00:00 2019
示例2:
# Ruby code for Date.asctime() method
# loading date
require 'date'
# declaring Date
a = Date.parse('2019-01-01')
# declaring Date
b = Date.strptime('03-12-2019', '%d-%m-%Y')
# declaring Date
c = Date.commercial(2019, 5, 6)
# Date
puts "Date a : #{a}\n\n"
puts "Date b : #{b}\n\n"
puts "Date c : #{c}\n\n\n\n"
# asctime form
puts "Date a asctime form : #{a.asctime}\n\n"
puts "Date b asctime form : #{b.asctime}\n\n"
puts "Date c asctime form : #{c.asctime}\n\n"
輸出:
Date a : 2019-01-01 Date b : 2019-12-03 Date c : 2019-02-02 Date a asctime form : Tue Jan 1 00:00:00 2019 Date b asctime form : Tue Dec 3 00:00:00 2019 Date c asctime form : Sat Feb 2 00:00:00 2019
相關用法
- Ruby Time asctime()用法及代碼示例
- Scala Date -用法及代碼示例
- Scala Date ===用法及代碼示例
- Ruby Date day()用法及代碼示例
- Ruby Date gregorian?用法及代碼示例
- Ruby Date cweek()用法及代碼示例
- Ruby Date gregorian()用法及代碼示例
- Ruby Date friday?用法及代碼示例
- Ruby Date england()用法及代碼示例
- Ruby Date downto()用法及代碼示例
- Ruby Date cwyear()用法及代碼示例
- Ruby Date day_fraction用法及代碼示例
- Ruby Date ctime()用法及代碼示例
- Ruby Date amjd()用法及代碼示例
注:本文由純淨天空篩選整理自Kirti_Mangal大神的英文原創作品 Ruby | Date asctime() function。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。