long starTime=System.currentTimeMills();
....
....
long endTime=System.currentTimeMills();
long time=endTime-starTime;
本文介绍了一种使用Java系统当前毫秒数进行时间测量的方法。通过记录开始时间和结束时间,并计算两者之间的差值来实现时间间隔的测量。
long starTime=System.currentTimeMills();
....
....
long endTime=System.currentTimeMills();
long time=endTime-starTime;

被折叠的 条评论
为什么被折叠?