Open In App

Ruby | Time usec function

Last Updated : 06 Jan, 2020
Comments
Improve
Suggest changes
Like Article
Like
Report
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
# 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
# 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


Next Article

Similar Reads