If I have a Time object got from :
Time.now
and later I instantiate another object with that same line, how can I see how many milliseconds have passed? The second object may be created that same minute, over the next minutes or even hours.
|
|
If I have a
and later I instantiate another object with that same line, how can I see how many milliseconds have passed? The second object may be created that same minute, over the next minutes or even hours.
|
||
|
|
|
|
As stated already, you can operate on For example:
You will need to decide whether to truncate that or not. |
|||
|
|
|
|
ezpz's answer is almost perfect, but I hope I can add a little more. Geo asked about time in milliseconds; this sounds like an integer quantity, and I wouldn't take the detour through floating-point land. Thus my approach would be:
Multiplying by an integer 1000 preserves the fractional number perfectly and may be a little faster too. If you're dealing with dates and times, you may need to use the DateTime class. This works similarly but the conversion factor is 24 * 3600 * 1000 = 86400000 . I've found DateTime's strptime and strftime functions invaluable in parsing and formatting date/time strings (e.g. to/from logs). What comes in handy to know is:
|
||
|
|
|
Time.now.to_f can help you but it returns seconds. In general, when working with benchmarks I:
It's a very simple process, so I'm not sure you were really asking this... |
||
|
|
|
|
Try subtracting the first Time.now from the second. Like so:
This gives you a floating-point number of the seconds between the two times (and with that, the milliseconds). |
||
|
|