Timer
Google 上的大多数搜索都会返回调度线程和任务的计时器的结果,这不是我想要的。
总是有老式的方法:
long startTime = System.nanoTime(); methodToTime(); long endTime = System.nanoTime(); long duration = (endTime - startTime); //divide by 1000000 to get milliseconds.