Pregunta de entrevista de Deloitte

Can we use the final keyword with the constructor?

Respuestas de entrevistas

Anónimo

12 mar 2021

A final method cannot be over-riden at all, while overriding is a very useful feature that a constructor has.

Anónimo

12 ago 2021

We can not override constructor of any class. And final method is used to prevent a method from overriding.