问题描述
- android中像IOS的NSDate timeIntervalSinceNow]效果一样的?
-
在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份。
时间: 2024-10-30 23:39:06