J2SE Question:

What is final?

Tweet Share WhatsApp

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.

Download J2SE PDF Read All 214 J2SE Questions
Previous QuestionNext Question
What is float?What is extends?