vote up 6 vote down star
2

Accuracy Vs. Precision

What I would like to know is whether I should use System.currentTimeMillis() or System.nanoTime() when updating my object's positions in my game? Their change in movement is directly proportional to the elapsed time since the last call and I want to be as precise as possible.

I've read that there are some serious time-resolution issues between different operating systems (namely that Mac / Linux have an almost 1 ms resolution while Windows has a 50ms resolution??). I'm primarly running my apps on windows and 50ms resolution seems pretty inaccurate.

Are there better options than the two I listed?

Any suggestions / comments?

flag

63% accept rate

6 Answers

vote up 10 vote down check

If you're just looking for extremely precise measurements of elapsed time, use System.nanoTime(). System.currentTimeMillis() will give you the most accurate possible elapsed time in milliseconds since the epoch, but System.nanoTime() gives you a nanosecond-precise time, relative to some arbitrary point.

From the Java Documentation:

public static long nanoTime()

Returns the current value of the most precise available system timer, in nanoseconds.

This method can only be used to measure elapsed time and is not related to any other notion of system or wall-clock time. The value returned represents nanoseconds since some fixed but arbitrary time (perhaps in the future, so values may be negative). This method provides nanosecond precision, but not necessarily nanosecond accuracy. No guarantees are made about how frequently values change. Differences in successive calls that span greater than approximately 292 years (263 nanoseconds) will not accurately compute elapsed time due to numerical overflow.

For example, to measure how long some code takes to execute:

long startTime = System.nanoTime();    
// ... the code being measured ...    
long estimatedTime = System.nanoTime() - startTime;

See also: JavaDoc System.nanoTime() and JavaDoc System.currentTimeMillis() for more info.

link|flag
Are you sure you know the difference between accuracy and precision? There is no way it is accurate to a nanosecond precision. – Simucal Dec 9 '08 at 2:09
Sorry, I meant precise. I was using the term loosely, but I agree it was confusing (and an improper use of the word). – dancavallaro Dec 9 '08 at 2:10
And since you want elapsed time, you don't care about accuracy, you care about precision. System.nanoTime() will give you the most precise time interval possible. – dancavallaro Dec 9 '08 at 2:11
@dancavallaro, thanks for the information. If you don't mind, I edited your answer to include a quote from the docs and fixed up the links – Simucal Dec 9 '08 at 2:28
No problem! And you did a good job, looks much better than my original answer. – dancavallaro Dec 9 '08 at 2:38
show 1 more comment
vote up 4 vote down

System.nanoTime() isn't supported in older JVMs. If that is a concern, stick with currentTimeMillis

Regarding accuracy, you are almost correct. On SOME Windows machines, currentTimeMillis() has a resolution of about 10ms (not 50ms). I'm not sure why, but some Windows machines are just as accurate as linux machines.

I have used GAGETimer in the past with moderate success.

link|flag
If you have used GAGE, would you mind answering this question on Java 2D Frameworks? stackoverflow.com/questions/293079/… – Software Monkey Dec 9 '08 at 2:22
I posted an answer on your thread. – PaulMorel Dec 9 '08 at 4:04
vote up 2 vote down

David Holmes of Sun posted a blog article a couple years ago that has a very detailed look at the Java timing APIs (in particular System.currentTimeMillis() and System.nanoTime()), when you would want to use which, and how they work internally.

Inside the Hotspot VM: Clocks, Timers and Scheduling Events - Part I - Windows

One very interesting aspect of the timer used by Java on Windows for APIs that have a timed wait parameter is that the resolution of the timer can change depending on what other API calls may have been made - system wide (not just in the particular process). He shows an example where using Thread.sleep() will cause this resolution change.

link|flag
vote up 1 vote down

Here are a couple of questions that are related:

Since you mention Windows, you'll more or less be limited to 10 ms resolution at best. Here's a bit from the Inside Windows NT High Resolution Timers article from TechNet:

Windows NT bases all of its timer support off of one system clock interrupt, which by default runs at a 10 millisecond granularity. This is therefore the resolution of standard Windows timers.

In my experience, using System.currentTimeMillis method gives about 15-16 ms resolution on Windows. Getting better time than the operating system timer will probably require more exotic methods.

link|flag
The article you referred to is 2 years old. FWIW I see much finer grained times from System.nanoTime(), and certainly millisecond granularity using Windows XP SP3. – Software Monkey Dec 9 '08 at 2:29
vote up 0 vote down

On my XP systems, I see system reported to at least 100 microseconds using System.nanoTime(). So, yes, if precision is desired use System.nanaTime() unless you must target older JVM's.

link|flag
vote up 0 vote down

Joda time is a better replacement library if you are making calls the standard java Calendar class, otherwise stick with System.currentTimeMillis() as it is more common, allowing for more code reuse from older projects. You may want to look at JSR-310. Looks like a winner!

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.