2011-10-07 27 views
5

Tôi cần đo khoảng thời gian có thể kéo dài tới vài giờ. Tôi giả định cách thông thường để thực hiện việc này sẽ là một cái gì đó như:Làm thế nào bạn có thể tránh việc khai thác đồng hồ trong trò chơi Android?

Date date = new Date(); 
...wait some time... 
(new Date()).getTime() - date.getTime()) 

Nhưng người dùng có thể thay đổi đồng hồ Android sau một giờ để lừa trò chơi và giảm thời gian ngắn hơn không? Liệu thời gian đọc từ một nguồn trực tuyến có phải là giải pháp tốt nhất?

Trả lời

9

new Date() sử dụng System.currentTimeMillis() phụ thuộc vào đồng hồ hệ điều hành - và có thể thay đổi khi người dùng thay đổi ngày giờ hệ thống.

Bạn nên sử dụng System.nanoTime(), mà đã thuộc tính sau:

/** 
* 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(); 

này không thể được thao tác bằng cách chỉ thay đổi ngày hệ thống.

+0

Hoàn hảo, cảm ơn. – FoppyOmega

+1

Có ai biết tương đương với SDK iOS không? – Tocco

+0

Một nhược điểm là nanoTime sẽ được đặt lại khi CPU được đặt lại. Điều đó có nghĩa là bạn không thể đo thời gian đã trôi qua khi điện thoại bị tắt. – sjkm

Các vấn đề liên quan