- public class RunTime {
- /**
- * @param args
- */
- public static void main(String[] args) {
- // TODO Auto-generated method stub
- long start= System.currentTimeMillis();//获得开始时间
- for( int i = 0 ; i < 1000 ; i ++){
- System.out.println("Hello!");
- }
- long end=System.currentTimeMillis();//结束时间
- System.out.println(end-start);//两者时间差就是程序所运行的毫秒数。
- }
- }
复制代码 |