how to use finalize()Method to resources

Answers were Sorted based on User's Feedback



how to use finalize()Method to resources..

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

how to use finalize()Method to resources..

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

how to use finalize()Method to resources..

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

how to use finalize()Method to resources..

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

Post New Answer

More Core Java Interview Questions

What are the features in java?

0 Answers  


What is bubble sorting in java?

0 Answers  


What is the dot operator?

0 Answers  


What is the loop in java?

0 Answers  


Which programming language is best in future?

0 Answers  






Which Math method is used to calculate the absolute value of a number?

3 Answers   Accenture,


What is a method ?

6 Answers  


Is it possible to use string in the switch case?

0 Answers  


Does list maintain insertion order java?

0 Answers  


What Is Resource Leak?

2 Answers  


What is class forname?

0 Answers  


What is JIT ?

4 Answers   Satyam,


Categories