I want to get the difference between two times. I.e., current time and time1 (like "17 Jun 2011 01:59:25"). By one way, we can do by using Date(string). But it is deprecated method. How to do this with a non-deprecated method?
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
|
|
Use
You can get the time difference between two
If you want to know the difference in seconds, minutes, hours, etc. then divide the number of milliseconds by the appropriate factor. |
|||
|
|