what are the differences between final,finally,finalize
methods?
Answer Posted / brijendra(xavient)
1-Final:Java have final class,finalmethod and
finalvariables.
*Finalclass can not be extended and the variables under the
final class can not be change.
*Finalvariables can not be changed.
*finalmethods can not be override or overriden.
2-Finally-Finally is a block which is used for catching the
uncaught exception which not handled by try block.
3-Finalize()- 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
| Is This Answer Correct ? | 1 Yes | 0 No |
Post New Answer View All Answers
What is identifier in java?
What is the meaning of variables in research?
Is arraylist sorted in java?
In java, how many ways you can take input from the console?
What is the java reflection api? Why it’s so important to have?
How do you convert an int to a double in java?
Define inheritance?
Is nullpointerexception checked or unchecked?
What is the full name of java?
Is array serializable java?
What is Enum in Java?
What is stringbuffer in java?
What do you understand by access specifiers in Java?
What is comparator in java?
What are the differences between checked exception and unchecked exception?