java中计算一个方法执行时长,耗费单位(秒)

 long startTime=System.currentTimeMillis();
//执行方法
long endTime=System.currentTimeMillis();
float excTime=(float)(endTime-startTime)/1000;
System.out.println("执行时间:"+excTime+"s");
posted @ 2017-03-14 09:48  道凡  阅读(5042)  评论(0)    收藏  举报