1.

What Does It Mean That A Class Or Member Is Final?

Answer»

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.

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.



Discussion

No Comment Found