Why would you ever implement finalize()?

前端 未结 21 2326
耶瑟儿~
耶瑟儿~ 2020-11-22 16:50

I\'ve been reading through a lot of the rookie Java questions on finalize() and find it kind of bewildering that no one has really made it plain that finalize()

相关标签:
21条回答
  • 2020-11-22 17:24

    As a side note:

    An object that overrides finalize() is treated specially by the garbage collector. Usually, an object is immediately destroyed during the collection cycle after the object is no longer in scope. However, finalizable objects are instead moved to a queue, where separate finalization threads will drain the queue and run the finalize() method on each object. Once the finalize() method terminates, the object will at last be ready for garbage collection in the next cycle.

    Source: finalize() deprecated on java-9

    0 讨论(0)
  • 2020-11-22 17:24

    Personally, I almost never used finalize() except in one rare circumstance: I made a custom generic-type collection, and I wrote a custom finalize() method that does the following:

    public void finalize() throws Throwable {
        super.finalize();
        if (destructiveFinalize) {
            T item;
            for (int i = 0, l = length(); i < l; i++) {
                item = get(i);
                if (item == null) {
                    continue;
                }
                if (item instanceof Window) {
                    ((Window) get(i)).dispose();
                }
                if (item instanceof CompleteObject) {
                    ((CompleteObject) get(i)).finalize();
                }
                set(i, null);
            }
        }
    }
    

    (CompleteObject is an interface I made that lets you specify that you've implemented rarely-implemented Object methods like #finalize(), #hashCode(), and #clone())

    So, using a sister #setDestructivelyFinalizes(boolean) method, the program using my collection can (help) guarantee that destroying a reference to this collection also destroys references to its contents and disposes any windows that might keep the JVM alive unintentionally. I considered also stopping any threads, but that opened a whole new can of worms.

    0 讨论(0)
  • 2020-11-22 17:25

    I'm not sure what you can make of this, but...

    itsadok@laptop ~/jdk1.6.0_02/src/
    $ find . -name "*.java" | xargs grep "void finalize()" | wc -l
    41
    

    So I guess the Sun found some cases where (they think) it should be used.

    0 讨论(0)
  • 2020-11-22 17:28

    The resources (File, Socket, Stream etc.) need to be closed once we are done with them. They generally have close() method which we generally call in finally section of try-catch statements. Sometimes finalize() can also be used by few developers but IMO that is not a suitable way as there is no guarantee that finalize will be called always.

    In Java 7 we have got try-with-resources statement which can be used like:

    try (BufferedReader br = new BufferedReader(new FileReader(path))) {
      // Processing and other logic here.
    } catch (Exception e) {
      // log exception
    } finally {
      // Just in case we need to do some stuff here.
    }
    

    In the above example try-with-resource will automatically close the resource BufferedReader by invoking close() method. If we want we can also implement Closeable in our own classes and use it in similar way. IMO it seems more neat and simple to understand.

    0 讨论(0)
  • 2020-11-22 17:32

    A simple rule: never use finalizers.

    The fact alone that an object has a finalizer (regardless what code it executes) is enough to cause considerable overhead for garbage collection.

    From an article by Brian Goetz:

    Objects with finalizers (those that have a non-trivial finalize() method) have significant overhead compared to objects without finalizers, and should be used sparingly. Finalizeable objects are both slower to allocate and slower to collect. At allocation time, the JVM must register any finalizeable objects with the garbage collector, and (at least in the HotSpot JVM implementation) finalizeable objects must follow a slower allocation path than most other objects. Similarly, finalizeable objects are slower to collect, too. It takes at least two garbage collection cycles (in the best case) before a finalizeable object can be reclaimed, and the garbage collector has to do extra work to invoke the finalizer. The result is more time spent allocating and collecting objects and more pressure on the garbage collector, because the memory used by unreachable finalizeable objects is retained longer. Combine that with the fact that finalizers are not guaranteed to run in any predictable timeframe, or even at all, and you can see that there are relatively few situations for which finalization is the right tool to use.

    0 讨论(0)
  • 2020-11-22 17:33

    The accepted answer lists that closing a resource during finalize can be done.

    However this answer shows that at least in java8 with the JIT compiler, you run into unexpected issues where sometimes the finalizer is called even before you finish reading from a stream maintained by your object.

    So even in that situation calling finalize would not be recommended.

    0 讨论(0)
提交回复
热议问题