java时间常量


public class CurretimeDemo {
	public static void main(String[] args) {
		long startime = System.currentTimeMillis();//1970-1-1到目前为止的毫秒数
		int count = 0;
		while(true){//死循环
			if(count++ == Integer.MAX_VALUE)
					break;
		}
		long endtime = System.currentTimeMillis();//因为这个时间是一直在变化的
		//第一个定义的毫秒数的值是执行long startime的时候的值
		//第二次定义是执行long endtime时候的值
		System.out.println("历时毫秒数为:" + (endtime - startime));//两个值相减,就是整个代码运行的时间
	}

}

你可能感兴趣的:(java)