首页 > 其他 > 详细

System类基础

时间:2014-08-13 18:09:26      阅读:246      评论:0      收藏:0      [点我收藏+]

取时间差:

public class SystemDemo01 {
    public static void main(String[] args) {
        long startTime = System.currentTimeMillis();
        for (int i = 0; i < 1000; i++) {
            try {
                Thread.sleep(100);
            } catch (InterruptedException e) {
                e.printStackTrace();
            }
        }
        long endTime = System.currentTimeMillis();

        System.out.println("Time costed: " + (endTime - startTime));
    }
}

取系统参数:

public class SystemDemo02 {
    public static void main(String[] args) {
        System.getProperties().list(System.out);
    }
}

System类基础,布布扣,bubuko.com

System类基础

原文:http://www.cnblogs.com/vonk/p/3910198.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!