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
Explain the JDB in depth & command line.
What is the difference between C++ and Java and your preferences?
What is join () in java?
What is the difference between compile-time polymorphism and runtime polymorphism?
Explain about oops concepts.
What is parsing in grammar?
What is the purpose of the main method?
What is the difference between variable declaration and variable initialization?
What is the final keyword in java?
What is exception handling in java?
What type of value does sizeof return?
Write a program in java to calculate the difference between the sum of the odd level and even level nodes of a binary tree.
What is operator overloading. Is it is supported in java?
What is the purpose of an interface?
In case of inheritance what is the execution order of constructor and destructor?