Answer Posted / javamasque
Final in java is used to restrict user to change further. It is used in various context as below
Final variable
• As variable become final, its value will never be modified.
• The variables become read only variable forever.
• If final variable is static then it must be initialized at the time of declaration.
• A non-static final variable can be blank but must be initialized in constructor.
• A local variable can be final.
• Final variables usually come with static key word as constant.
Final method
• As method become final, it never be override but be overload.
• A final method can be static and synchronized but never be abstract.
• As we are sure that the method implementation is complete and will never be override then we should make it final.
Final class
• A final class is complete class and will never be sub-classed.
• Final class helps to define immutable class.
• There are some final classes like String, Integer and other wrapper classes.
| Is This Answer Correct ? | 5 Yes | 0 No |
Post New Answer View All Answers
What are daemon Threads in java?
Does java allow default arguments?
What is the function of static in java?
What is anonymous inner class?
Explain thread in java?
What is finally in Java?
What are different data types?
What is qms certification?
What is synchronization and why is it important in java programming?
what is object slice?
What happens if we don’t define serial version uid?
What is final keyword in java? Give an example.
What is the difference between throw and throws in java?
What is busy spin, and why should you use it?
I want to control database connections in my program and want that only one thread should be able to make database connection at a time. How can I implement this logic?