Explain final, finalize() and finally?
Answer Posted / tarun
Any class declared by final cannot be subclassed.
Any variable declared with final its value remain constant
that is declared at the time of declaring it.
Any method declared with final in a class can not be
override with other class.
finalize() method is called by the Garbage Collector on an
object when there is no more reference to the object.
finally method is used in exception handling with try-catch
block. try block can not be used alone, it should be used at
least with catch or finally. In catch block we catch(handle)
the exception type that occured during the execution and in
finally we write some code like closing file, connection,
garbag collect any object that is of no more useful in our
application.
| Is This Answer Correct ? | 7 Yes | 2 No |
Post New Answer View All Answers
What is the purpose of the return statement?
Can we override the static methods?
Write code to implement bubble sort in java?
Why Java doesn’t support multiple inheritance?
how many types of Inheritance?
Explain the difference between abstraction and encapsulation.
What is float in java?
Write a program to search a number in the given list of numbers.
What does it mean to flush a file?
What does system out println () do?
How does a for loop work?
Explain about collection interface in java?
What are some examples of variable costs?
What is the final method?
Considering notepad/ie or any other thing as process, what will happen if you start notepad or ie 3 times? Where 3 processes are started or 3 threads are started?