1.

What Is Final ?

Answer»

A Java keyword. You DEFINE an entity once and cannot change it or derive from it later. More SPECIFICALLY: a final class cannot be subclassed, a final METHOD cannot be overridden and a final variable cannot change from its INITIALIZED VALUE.

A Java keyword. You define an entity once and cannot change it or derive from it later. More specifically: a final class cannot be subclassed, a final method cannot be overridden and a final variable cannot change from its initialized value.



Discussion

No Comment Found