how to use finalize()Method to resources
Answers were Sorted based on User's Feedback
Answer / rakesh
finalize() is used to release other resources
held by your object (such as database connections or
file handles)
| Is This Answer Correct ? | 6 Yes | 2 No |
Answer / nidhi
finalize is the method called(if defined) by garbage
collector just before it calls any object for garbage
collection. You are never sure that when will it be called.
The main aim for defining this method is to release the
resources that the object is holding before the object
could be deleted from the memory. If this method is called
then the object is not deleted from the memory in that
particular run of garbage collection but is deleted in the
next run.
| Is This Answer Correct ? | 3 Yes | 0 No |
Answer / srinivasa
As this method is available in object class we can override
the method and provide the code to release the resources.
| Is This Answer Correct ? | 0 Yes | 0 No |
Answer / sakthivel(gceb)(n.p)pollachi
finalize is one of the keyword in java.if you once declare
a method is final it can not be derived from another
class.you can use them in the form of finalize function name
()
| Is This Answer Correct ? | 6 Yes | 12 No |
What are the differences between string and stringbuffer?
How can final class be used?
What is the transient keyword?
What is the exact difference in between Unicast and Multicast object? Where will it be used?
What is ‘has a’’ relationship in java?
Can we declare static variables in JSP page.
What is java in detail?
Can private class be extended java?
How to run a JAR file through command prompt?
What is a qms manual?
What does .equals do in java?
What are the problems faced by java programmers who don't use layout managers?