码迷,mamicode.com
首页 > 其他好文 > 详细

对象销毁之前进行某些操作

时间:2014-08-13 17:49:26      阅读:157      评论:0      收藏:0      [点我收藏+]

标签:style   color   os   ar   new   on   对象   return   

class Person {
    private String name;
    private int age;

    public Person(String name, int age) {
        this.name = name;
        this.age = age;
    }

    public String toString() {
        return "Nmae:" + this.name + ",Age:" + this.age;
    }

    public void finalize() {
        System.out.println("Object be released---->" + this);
    }
}

public class SystemDemo04 {
    public static void main(String[] args) {
        Person person = new Person("VON KENMO", 38);
        person = null;
        System.gc();
    }
}

对象销毁之前进行某些操作,布布扣,bubuko.com

对象销毁之前进行某些操作

标签:style   color   os   ar   new   on   对象   return   

原文地址:http://www.cnblogs.com/vonk/p/3910214.html

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