Final Modifier
Can never be sub-classed by any other class.
A subclass can not override a final method.
Variables that can never change, constants!
Two reasons for making methods final :
- Security :
No one can change the behavior of a method (or class).