wat is final...?
wat is finally...?
wat is finalize....?
difference between " final and finally and finalize "...?
Answer Posted / mmkrish
final --> is a keyword. It will be used for variables,
methods and classes also.
final variables --> Cannot change their value.
final Methods --> Cannot override or overload
final Class --> it can never be subclassed.
finally --> is a block used in exception handling. Genrally
used along with try.catch blocks... though try or catch
block executes...finally block should execute at last.
Means, if we have add finally block, it will call though
there is an exeption occurs.
finalize() --> It is a method. This will be used in garbage
collection of java. It will clear all the unused
resources...Cannot Override. It is a protected method.
| Is This Answer Correct ? | 23 Yes | 0 No |
Post New Answer View All Answers
What is file in java?
what is meant wrapper classes?
What are controls and their different types in awt?
Can we have try block without catch block?
What are loops in java? What are three types of loops?
What are the three parts of a lambda expression?
What is difference between fileinputstream and filereader in java?
Can a class have 2 constructors?
What is the difference between a factory and abstract factory pattern?
Explain importance of finally block in java?
What is immutable data?
Can we call thread start () twice?
What is OOP Language?
What are the different types of garbage collectors in java?
What is the purpose of abstract class?