计算程序运行时间方法

计算程序运行时间方法

long t1 = System.nanoTime();
  ....
long t2 = System.nanoTime();

System.out.println((t2-t1)/1000000);

你可能感兴趣的:(计算程序运行时间方法)