Ruby 时间 now()函数

Ruby 时间 now()函数

now() 是Ruby中一个内置的方法,用于返回当前时间。

语法 :time.now()

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

返回值 : 它返回当前时间

例子 1 :

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

输出:

2019-08-27 08:26:42 +0000

例2 :

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

输出:

2019-08-27 08:26:42 +0000

Python教程

Java教程

Web教程

数据库教程

图形图像教程

大数据教程

开发工具教程

计算机教程