<small id='KrW1O'></small><noframes id='KrW1O'>

  • <legend id='KrW1O'><style id='KrW1O'><dir id='KrW1O'><q id='KrW1O'></q></dir></style></legend>

    • <bdo id='KrW1O'></bdo><ul id='KrW1O'></ul>

      1. <i id='KrW1O'><tr id='KrW1O'><dt id='KrW1O'><q id='KrW1O'><span id='KrW1O'><b id='KrW1O'><form id='KrW1O'><ins id='KrW1O'></ins><ul id='KrW1O'></ul><sub id='KrW1O'></sub></form><legend id='KrW1O'></legend><bdo id='KrW1O'><pre id='KrW1O'><center id='KrW1O'></center></pre></bdo></b><th id='KrW1O'></th></span></q></dt></tr></i><div id='KrW1O'><tfoot id='KrW1O'></tfoot><dl id='KrW1O'><fieldset id='KrW1O'></fieldset></dl></div>
      2. <tfoot id='KrW1O'></tfoot>

        Java和手动执行finalize

        时间:2023-07-12
            <tbody id='gXkBE'></tbody>

            1. <i id='gXkBE'><tr id='gXkBE'><dt id='gXkBE'><q id='gXkBE'><span id='gXkBE'><b id='gXkBE'><form id='gXkBE'><ins id='gXkBE'></ins><ul id='gXkBE'></ul><sub id='gXkBE'></sub></form><legend id='gXkBE'></legend><bdo id='gXkBE'><pre id='gXkBE'><center id='gXkBE'></center></pre></bdo></b><th id='gXkBE'></th></span></q></dt></tr></i><div id='gXkBE'><tfoot id='gXkBE'></tfoot><dl id='gXkBE'><fieldset id='gXkBE'></fieldset></dl></div>

              <legend id='gXkBE'><style id='gXkBE'><dir id='gXkBE'><q id='gXkBE'></q></dir></style></legend>
                <tfoot id='gXkBE'></tfoot>
                  <bdo id='gXkBE'></bdo><ul id='gXkBE'></ul>

                • <small id='gXkBE'></small><noframes id='gXkBE'>

                • 本文介绍了Java和手动执行finalize的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着跟版网的小编来一起学习吧!

                  问题描述

                  如果我从我的程序代码中对一个对象调用 finalize(),当垃圾收集器处理这个对象时,JVM 是否仍会再次运行该方法?

                  If I call finalize() on an object from my program code, will the JVM still run the method again when the garbage collector processes this object?

                  这是一个大概的例子:

                  MyObject m = new MyObject();
                  
                  m.finalize();
                  
                  m = null;
                  
                  System.gc()
                  

                  显式调用 finalize() 是否会使 JVM 的垃圾收集器不在对象上运行 finalize() 方法代码>m?

                  Would the explicit call to finalize() make the JVM's garbage collector not to run the finalize() method on object m?

                  推荐答案

                  根据这个简单的测试程序,即使你显式调用了它,JVM 仍然会调用 finalize():

                  According to this simple test program, the JVM will still make its call to finalize() even if you explicitly called it:

                  private static class Blah
                  {
                    public void finalize() { System.out.println("finalizing!"); }
                  }
                  
                  private static void f() throws Throwable
                  {
                     Blah blah = new Blah();
                     blah.finalize();
                  }
                  
                  public static void main(String[] args) throws Throwable
                  {
                      System.out.println("start");
                      f();
                      System.gc();
                      System.out.println("done");
                  }
                  

                  输出是:

                  开始
                  完成!
                  完成!
                  完成

                  start
                  finalizing!
                  finalizing!
                  done

                  那里的每个资源都说永远不会显式调用 finalize(),甚至几乎永远不会实现该方法,因为无法保证是否以及何时调用它.最好手动关闭所有资源.

                  Every resource out there says to never call finalize() explicitly, and pretty much never even implement the method because there are no guarantees as to if and when it will be called. You're better off just closing all of your resources manually.

                  这篇关于Java和手动执行finalize的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持跟版网!

                  上一篇:-XX:-PrintGC 和 XX:-PrintGCDetails 标志有什么作用? 下一篇:Java 非常大的堆大小

                  相关文章

                    <i id='l8ej7'><tr id='l8ej7'><dt id='l8ej7'><q id='l8ej7'><span id='l8ej7'><b id='l8ej7'><form id='l8ej7'><ins id='l8ej7'></ins><ul id='l8ej7'></ul><sub id='l8ej7'></sub></form><legend id='l8ej7'></legend><bdo id='l8ej7'><pre id='l8ej7'><center id='l8ej7'></center></pre></bdo></b><th id='l8ej7'></th></span></q></dt></tr></i><div id='l8ej7'><tfoot id='l8ej7'></tfoot><dl id='l8ej7'><fieldset id='l8ej7'></fieldset></dl></div>
                      <bdo id='l8ej7'></bdo><ul id='l8ej7'></ul>
                  1. <legend id='l8ej7'><style id='l8ej7'><dir id='l8ej7'><q id='l8ej7'></q></dir></style></legend>

                    <small id='l8ej7'></small><noframes id='l8ej7'>

                    <tfoot id='l8ej7'></tfoot>