Ruby | Time usec function Last Updated : 06 Jan, 2020 Summarize Comments Improve Suggest changes Share 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 Comment More infoAdvertise with us Next Article Ruby | Time utc? function M mayank5326 Follow Improve Article Tags : Ruby Ruby-Methods Ruby Time-class Similar Reads Ruby | Time tv_usec function Time#tv_usec() is a Time class method which returns the number of microseconds for time. Syntax: Time.tv_usec() Parameter: Time values Return: the number of microseconds for time. Example #1 : Ruby # Ruby code for Time.tv_usec() method # loading library require 'time' # declaring time a = Time.new(2 2 min read Ruby | Time utc function Time#utc() : utc() is a Time class method which returns the conversion of time to UTC (GMT), modifying the receiver. Syntax: Time.utc() Parameter: Time values Return: the conversion of time to UTC (GMT), modifying the receiver. Example #1 : Ruby # Ruby code for Time.utc() method # loading library re 2 min read Ruby | Time utc? function Time#utc?() : utc?() is a Time class method which checks whether the time is a conversion to UTC (GMT), modifying the receiver. Syntax: Time.utc?() Parameter: Time values Return: true - if there is a time conversion to UTC (GMT), modifying the receiver Otherwise return false. Example #1 : Ruby # Rub 2 min read Ruby | Time - function Time#-() is a Time class method which returns a new time value after subtracting seconds from it. Syntax: Time.-() Parameter: Time values Return: new time value after subtracting seconds from it. Example #1 : Ruby # Ruby code for Time.-() method # declaring time a = Time.new(2019) # declaring time b 2 min read Ruby | Time + function Time#+() is a Time class method which returns a new time value after adding seconds to it. Syntax: Time.+() Parameter: Time values Return: new time value after adding seconds to it Example #1 : Ruby # Ruby code for Time.+() method # declaring time a = Time.new(2019) # declaring time b = Time.new(201 2 min read Ruby | Time year() function Time#year() : year() is a Time class method which returns the year for time (including the century). Syntax: Time.year() Parameter: Time values Return: year for time (including the century). Example #1 : Ruby # Ruby code for Time.year() method # loading library require 'time' # declaring time a = Ti 2 min read Like