📜  红宝石 |时间 ctime()函数

📅  最后修改于: 2022-05-13 01:55:39.345000             🧑  作者: Mango

红宝石 |时间 ctime()函数

ctime()是 Ruby 中的一个内置方法,它返回时间的规范字符串表示。

示例 1

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

输出

Wed Feb 24 12:00:00 1993

示例 2

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

输出

Tue Aug 27 08:22:03 2019