<<< Concrete class | Index | A final class example >>> |
The final modifier can
prevent a class from being sub classed (i.e. inherited from)
prevent a method from being overridden in a subclass
prevent a parameter passed into a method from being modified
<<< Concrete class | Index | A final class example >>> |