new Date()
使用System.currentTimeMillis()
這取決於操作系統時鐘 - 並且可能隨用戶更改系統日期和時間而改變。
您應該使用System.nanoTime()
,這具有以下特點:
/**
* Returns the current value of the most precise available system
* timer, in nanoseconds.
*
* <p>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 (2<sup>63</sup>
* nanoseconds) will not accurately compute elapsed time due to
* numerical overflow.
*
* <p> For example, to measure how long some code takes to execute:
* <pre>
* long startTime = System.nanoTime();
* // ... the code being measured ...
* long estimatedTime = System.nanoTime() - startTime;
* </pre>
*
* @return The current value of the system timer, in nanoseconds.
* @since 1.5
*/
public static native long nanoTime();
這不能僅通過更改系統日期進行操作。
完美,謝謝。 – FoppyOmega
任何人都知道iOS SDK的等價物? – Tocco
一個缺點是,當CPU被重置時nanoTime將被重置。這意味着您無法測量手機關機時的精確時間。 – sjkm