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()
时间: 2024-11-14 23:13:16