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 do you mean by stack?
Does string isempty check for null?
Can a method be static?
What are the differences between graph and tree?
What are the different types of constructor?
Does treeset allow null in java?
What is the use of generics? When was it added to the Java development Kit?
How many JVMs can run on a single machine and what is the Just-In-Time(JIT) compiler?
How to pass arraylist to stored procedure in java?
Howto get an object that will perform date & time calculations then format it for output in some different locales with different date style.can ne1 tel me the answer of this question.pls
What string is utf8?
What are the states of thread in java?
What happens if main method is not static?
What is OOP's Terms with explanation?
Java.util.regex consists of which classes?