what are the differences between final,finally,finalize
methods?
Answer Posted / ramudu
final – constant declaration.
finally – The finally block always executes when the try block exits, except System.exit(0) call. This ensures that the finally block is executed even if an unexpected exception occurs. But finally is useful for more than just exception handling — it allows the programmer to avoid having cleanup code accidentally bypassed by a return, continue, or break. Putting cleanup code in a finally block is always a good practice, even when no exceptions are anticipated.
finalize() – method helps in garbage collection. A method that is invoked before an object is discarded by the garbage collector, allowing it to clean up its state. Should not be used to release non-memory resources like file handles, sockets, database connections etc because Java has only a finite number of these resources and you do not know when the garbage collection is going to kick in to release these non-memory resources through the finalize() method.
| Is This Answer Correct ? | 1 Yes | 0 No |
Post New Answer View All Answers
Can we define package statement after import statement in java?
What is charat java?
What is identifier with example?
How to access arraylist elements in java?
What is difference between arraylist and list in java?
'A class is a template for an object' explain this statement.
What are the basic interfaces of java collections framework?
What is a consumer in java?
I am a fresher and know core java, c languge, html, css etc if I am illegible for any job then send it on my email tatranakshay276@gmail.com
Why chararray() is preferred over string to store the password?
What are 5 boolean operators?
What happens if an exception is throws from an object's destructor?
What is the difference between int and integer in java?
How do you delete a list in java?
What is array class in java?