462-JavaSE进阶-统计方法执行时长

462-JavaSE进阶-统计方法执行时长

/*
获取自1970年1月1日 00:00:00 000到当前系统时间的总毫秒数。
1秒 = 1000毫秒

简单总结一下System类的相关属性和方法:
    System.out 【out是System类的静态变量。】
    System.out.println() 【println()方法不是System类的,是PrintStream类的方法。】
    System.gc() 建议启动垃圾回收器
    System.currentTimeMillis() 获取自1970年1月1日到系统当前时间的总毫秒数。
    System.exit(0) 退出JVM。
 */
posted @ 2021-08-21 15:08  nkndlawn  阅读(54)  评论(0编辑  收藏  举报