What is meant by final class, methods and variables?
Answers were Sorted based on User's Feedback
when you declare a class as final, that class cannot be
extended.In java "String" class is final.
when you declare the variable as final then we can
intialize it only once.it is constant.
when declare the method as final we cannot override the
method
| Is This Answer Correct ? | 12 Yes | 0 No |
Answer / ravikiran(aptech mumbai)
final class:Is the one which cann't be subclassed
final method:Is the one which cann't be overrided
final variable:is the one which acts like a constant
| Is This Answer Correct ? | 12 Yes | 1 No |
Answer / suresh chand
final class: we can't inherit that class
final method: we can't override that method
final variable: we can't change the value of that var.
| Is This Answer Correct ? | 9 Yes | 0 No |
How do you convert int to char in java?
What are daemon Threads in java?
Difference between abstract and concrete class ?
Why transient variables wont participate in serialization?
Differentiate between overriding and overloading cases?
What is the difference between hashset and treeset in java?
Explain different states of a thread in java?
How OOPS concept is achieved in Java?
6 Answers Cognizant, JPMorgan Chase, Xavient,
Are functions objects in java?
What is difference between hashset and hashmap?
How will you print number in reverse (descending) order in BST.
What are the approaches that you will follow for making a program very efficient?