在IOS中的代碼:
NSDate *startDateX = [NSDate date];
// 自定義操作
NSLog(@"Time difference: %f", -[startDateX timeIntervalSinceNow]);
然後輸出:
Time difference: 15.009682
如果在android中怎麼實現相同的功能?
用System.currentTimeMillis()
計算毫秒:
long start = System.currentTimeMillis();
long difference = System.currentTimeMillis() - start;
Log.v("Time difference:", String.valueOf(difference));
更精確的用System.nanoTime()
. 用System.currentTimeMillis()
把秒分成1000份。