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

Collections in Java

Exception Handling

OOPS Concept in Java