How does finally block differ from finalize() method?

Technology CommunityCategory: JavaHow does finally block differ from finalize() method?
VietMX Staff asked 4 years ago

A finally block will be executed whether or not an exception is thrown and is used to release those resources held by the application. Finalize is a protected method of the Object class, which is called by the Java Virtual Machine (JVM) just before an object is garbage collected.