Ruby Date asctime()函数

Ruby Date asctime()函数

Date#asctime() 是一个Date类方法,用于返回asctime格式的字符串。它相当于strftime(‘%c’).天文上修改的朱利安日数字。

语法: Date.asctime()
参数: Date值
返回: asctime格式的字符串。strftime(‘%c’).天文上修改过的Julian日的数字。

例子 #1 :

Ruby 1=1

 ```

**输出:**
```ruby 
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

Python教程

Java教程

Web教程

数据库教程

图形图像教程

大数据教程

开发工具教程

计算机教程