标签:catch except 结束 err end nbsp logs 如何 nano
1 long start = System.currentTimeMillis(); // 记录起始时间 2 try { 3 Thread.sleep(5000); // 线程睡眠5秒,让运行时间不那么小 4 } catch (InterruptedException e) { 5 e.printStackTrace(); 6 } 7 long end = System.currentTimeMillis(); // 记录结束时间 8 System.out.println(end-start); // 相减得出运行时间
单位是毫秒。
long start = System.currentTimeMillis(); //记录当前时间
long end = System.currentTimeMillis();
//System.nanoTime()
标签:catch except 结束 err end nbsp logs 如何 nano
原文地址:http://www.cnblogs.com/magicya/p/6681883.html