查询方法运行时间
程序员文章站
2023-12-22 19:56:46
...
逻辑很简单直接上代码
long startTime=System.currentTimeMillis();
long endTime=System.currentTimeMillis();
float excTime=(float)(endTime-startTime)/1000;
System.out.println("执行时间:"+excTime+"s");