System类

public class Systemfinally {
    
    public static void main(String[] args) {
        //获取1970年到至今的毫秒数
        System.currentTimeMillis();
        //退出jvm后面的东西不会得到执行
        System.exit(0);
        //运行垃圾回收器,清除内存用的,通常是java虚拟机自动调用的
        System.gc();
        
    }
    
}

 

posted @ 2018-07-26 22:18  侯小铁柱  阅读(123)  评论(0)    收藏  举报