Open In App
Related Articles

Ruby | Time usec function

Improve Article
Improve
Save Article
Save
Like Article
Like

Time#usec() is a Time class method which returns the number of microseconds for time.

Syntax: Time.usec()

Parameter: Time values

Return: the number of microseconds for time.

Example #1 :




# Ruby code for Time.usec() method
  
# loading library
require 'time'
  
# declaring time 
a = Time.new(2019)
  
# declaring time
b = Time.new(2019, 10)
  
# declaring time
c = Time.new(2019, 12, 31)
  
# Time 
puts "Time a : #{a}\n\n"
puts "Time b : #{b}\n\n"
puts "Time c : #{c}\n\n\n\n"
  
  
# usec form 
puts "Time a usec form : #{a.usec}\n\n"
puts "Time b usec form : #{b.usec}\n\n"
puts "Time c usec form : #{c.usec}\n\n"


Output :

Time a : 2019-01-01 00:00:00 +0000

Time b : 2019-10-01 00:00:00 +0000

Time c : 2019-12-31 00:00:00 +0000



Time a usec form : 0

Time b usec form : 0

Time c usec form : 0


Example #2 :




# Ruby code for Time.usec() method
  
# loading library
require 'time'
  
# declaring time 
a = Time.now
  
# declaring time
b = Time.new(1000, 10, 10)
  
# declaring time
c = Time.new(2020, 12)
  
# Time 
puts "Time a : #{a}\n\n"
puts "Time b : #{b}\n\n"
puts "Time c : #{c}\n\n\n\n"
  
  
# usec form 
puts "Time a usec form : #{a.usec}\n\n"
puts "Time b usec form : #{b.usec}\n\n"
puts "Time c usec form : #{c.usec}\n\n"


Output :

Time a : 2019-08-27 09:16:21 +0000

Time b : 1000-10-10 00:00:00 +0000

Time c : 2020-12-01 00:00:00 +0000



Time a usec form : 673126

Time b usec form : 0

Time c usec form : 0


Whether you're preparing for your first job interview or aiming to upskill in this ever-evolving tech landscape, GeeksforGeeks Courses are your key to success. We provide top-quality content at affordable prices, all geared towards accelerating your growth in a time-bound manner. Join the millions we've already empowered, and we're here to do the same for you. Don't miss out - check it out now!

Last Updated : 06 Jan, 2020
Like Article
Save Article
Previous
Next
Similar Reads