Ruby 时间 asctime() 函数

Ruby 时间 asctime() 函数

asctime() 是Ruby中的一个内置方法,用于返回时间的典型字符串表示。

语法 :time.asctime()

参数 :该函数不接受任何参数

返回值 :它返回时间的典型字符串表示法。

例子 1 :

# Ruby code for asctime() method
  
# Include Time
require 'time'
  
# Declaring time 
a = Time.new(1993, 02, 24, 12, 0, 0, "+09:00")
  
# Prints time as string 
puts a.asctime()

输出:

Wed Feb 24 12:00:00 1993

例2 :

# Ruby code for asctime() method
  
# Include Time
require 'time'
  
# Declaring time 
a = Time.now.asctime()
  
# Prints time as string 
puts a

输出:

Tue Aug 27 08:22:03 2019

Python教程

Java教程

Web教程

数据库教程

图形图像教程

大数据教程

开发工具教程

计算机教程