DEVFYI - Developer Resource - FYI

What is final

J2SE Interview Questions and Answers


(Continued from previous question...)

73. What is final

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.

(Continued on next question...)

Other Interview Questions