final keyword in Java

Overview

  • final class cannot be inherited.
  • final methods cannot be overridden.
  • final variables cannot be changed in future.


Comments

Popular posts from this blog

HashMap, TreeMap and LinkedHashMap difference

Collections in Java

OOPS Concept in Java