Java如何手动删除对象

2022/4/12 17:13:54

本文主要是介绍Java如何手动删除对象,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!

Java如何像C++一样删除对象

You should remove the references to it by assigning null or leaving the block where it was declared. After that, it will be automatically deleted by the garbage collector (not immediately, but eventually).

Example 1:

Object a = new Object();
a = null; // after this, if there is no reference to the object,
          // it will be deleted by the garbage collector

Example 2:

if (something) {
    Object o = new Object(); 
} // as you leave the block, the reference is deleted.
  // Later on, the garbage collector will delete the object itself.


这篇关于Java如何手动删除对象的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!


扫一扫关注最新编程教程