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

Language Fundamentals in Java

Collections in Java