When a class is defined as final it:
Can no longer be extended by other classes.
Means methods in the class are not over-loadable.
Cannot be defined as such, final is only applicable to object methods.
Is no longer iteratable.
Submit