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 |
Can we define constructor in inner class?
all are saying java doesn't support multiple inheritance but by default Object class is super class for all the user defined classes and we can extend atmost one class so each class can extend more than one class so java supports multiple inheritance?i am confused with this,pls any one explain me.
Will minecraft java be discontinued?
What kind of variables a class can consist of?
How many statements can be created with one connection in jdbc?
What is application tier?
How does Vector implement synchronization?
What is the difference between hashset and treeset in java?
Can you extend main method in java?
Can a top level class be private or protected?
What is difference between this and super keyword?
Why should we use java?