Does anyone know how to calculate time difference in C++ in miliseconds? I used difftime (time.h) but it doesn't have enough precision for what I'm trying to measure.
|
|
|
You have to use one of the more specific time structures, either timeval (microsecond-resolution) or timespec (nanosecond-resolution), but you can do it manually fairly easily:
This obviously has some problems with integer overflow if the difference in times is really large (or if you have 16-bit ints), but that's probably not a common case. |
|||||||||||
|
|
I know this is an old question, but there's an updated answer for C++0x. There is a new header called
More information can be found here: http://www.open-std.org/jtc1/sc22/wg21/docs/papers/2008/n2661.htm There is also now a boost implementation of |
|||
|
|
|
if you are using win32 FILETIME is the most accurate that you can get: Contains a 64-bit value representing the number of 100-nanosecond intervals since January 1, 1601 (UTC). So if you want to calculate the difference between two times in milliseconds you do the following:
|
|||
|
|
The clock function gives you a millisecond timer, but it's not the greatest. Its real resolution is going to depend on your system. You can try
and see how your results are. |
|||||||||||||
|
|
You can use After you use difftime, calculate the difference in the microseconds field yourself. |
|||
|
|
|
You can get micro and nanosecond precision out of Boost.Date_Time. |
|||
|
|
|
If you're looking to do benchmarking, you might want to see some of the other threads here on SO which discuss the topic. Also, be sure you understand the difference between accuracy and precision. |
|||
|
|
|
I think you will have to use something platform-specific. Hopefully that won't matter? eg. On Windows, look at QueryPerformanceCounter() which will give you something much better than milliseconds. |
|||
|
|