Monday, 13 February 2012

What does it mean that a class or member is final? | Core Java

A final class cannot be inherited. A final method cannot be overridden in a subclass. A final field cannot be changed after it's initialized, and it must include an initializer statement where it's declared.

No comments: