ContactUs :

Please send your Questions & Answers or Feedback to "mohan@javabook.org"

What is final keyword?

final keyword is used with Class to make sure no other class can extend it, for example String class is final and we can’t extend it.

We can use final keyword with methods to make sure child classes can’t override it.

final keyword can be used with variables to make sure that it can be assigned only once. However the state of the variable can be changed, for example we can assign a final variable to an object only once but the object variables can change later on.

Java interface variables are by default final and static.
Related Posts Plugin for WordPress, Blogger...
Flag Counter