码迷,mamicode.com
首页 > 编程语言 > 详细

java垃圾回收机制的使用

时间:2017-08-24 19:47:04      阅读:173      评论:0      收藏:0      [点我收藏+]

标签:exception   nali   ring   log   str   div   bool   span   final   

public class Test {
    public static void main(String[] args) throws Exception {
        Book b=new Book(true);
        b.checkIn();
        new Book(true);
        System.gc();
    }

}
class Book{
    boolean checkdOut = false;
    Book (boolean checkOut) {
        checkdOut = checkOut;
    }
    
    protected void checkIn() {
        checkdOut = false;
    }
    protected void finalize() {
        if (checkdOut) {
            System.out.println("Error : check Out");
        }
    }
}

在执行回收机制之前会先执行finalize()

java垃圾回收机制的使用

标签:exception   nali   ring   log   str   div   bool   span   final   

原文地址:http://www.cnblogs.com/chenglc/p/7424390.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!