Java程序运行时间计时代码

package com.writchie;

import java.util.Date;

public class Timer {

/**
* @author   writchie

*/
public static void main(String[] args) {

   long startTime = new Date().getTime();
/*

程序代码

*/

   long endTime = new Date().getTime();
   System.out.println("本程序运行 " + (endTime - startTime)
                 + " 毫秒完成。" );

}

}

你可能感兴趣的:(java,Date,timer,String,Class)