时间毫秒的作用

package com.ithei.DateTimeDemo;

/**
 * @program: javaDemo01->DemoTime
 * @description: 时间毫秒的使用场景
 * @author: 安生
 * @create: 2021-01-22 13:36
 **/


import java.util.Date;

/**
   时间毫秒的作用
      常见使用场景
 */
public class DemoTime {

    /**
      因为 Date对象的值不适合用于计算 但是时间毫秒适合
     * @param args
     */
    public static void main(String[] args) {

        //时间的开始
        long startTime = new Date().getTime();
        for (int i = 0; i < 1000000; i++){
            System.out.println("输出:"+i);
        }
        //时间的结束
        long endTime = new Date().getTime();
        System.out.println( (endTime-startTime) / 1000.0 + "s" );
    }

}

 

posted @ 2021-01-22 13:42  AxeBurner  阅读(102)  评论(0编辑  收藏  举报