Was ist der Unterschied zwischen "finally", "final" und "finalize" in Java?
Anonymous
Finally - block of code that is always executed, exception when the program exits. Used in exception handling Final - is a keyword that makes: - a variable unchangeable - a method un-override-able - a class un-inheritable Finalize() - is a method used in garbage collection and it is called just before an object is garbage collected. This method can be used for cleanup.
Check out your Company Bowl for anonymous work chats.