计时操作
Posted sunny-miss
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了计时操作相关的知识,希望对你有一定的参考价值。
1、Stopwatch watch = Stopwatch.createStarted();
watch.stop();
"耗时:"+watch.elapsed().toMillis()
2、
Instant beginTime = Instant.now();
Instant endTime = Instant.now();
耗时:Duration.between(beginTime, endTime).toMillis() + "ms"
3、long start = System.currentTimeMillis();
long end = System.currentTimeMillis();
耗时: (end - start) ms
以上是关于计时操作的主要内容,如果未能解决你的问题,请参考以下文章