1 / 10

Java Final Keyword

Final keyword in java is used to limiting the user. It is used to restrict method overriding, restrict inheritance, and used to make variable as constant. Final keyword can initialize in constructor only.

Ducat1
Download Presentation

Java Final Keyword

An Image/Link below is provided (as is) to download presentation Download Policy: Content on the Website is provided to you AS IS for your information and personal use and may not be sold / licensed / shared on other websites without getting consent from its author. Content is provided to you AS IS for your information and personal use only. Download presentation by click this link. While downloading, if for some reason you are not able to download a presentation, the publisher may have deleted the file from their server. During download, if you can't get a presentation, the file might be deleted by the publisher.

E N D

Presentation Transcript


  1. Welcome to Ducat India Language | Industrial Training | Digital Marketing | Web Technology | Testing+ | Database | Networking | Mobile Application | ERP | Graphic | Big Data | Cloud Computing Apply Now Training & Certification Call us: 70-70-90-50-90 www.ducatindia.com

  2. Java Final Keyword • Final keyword in java is used to limiting the user. It is used to restrict method overriding, restrict inheritance, and used to make variable as constant. Final keyword can initialize in constructor only. • In java final keyword is used in the following: • Final variable • Final method • Final class • Now we can learn the basics and detailed of a final keyword. • Java Final variable • In the java final variable, if we make any variable as final, we cannot change the value of the final variable because it will be a constant variable.

  3. Example of Final variable

  4. Output Show error In this example, speed limit is final variable, and we are going to change the value of this variable, but it cannot change because once the variable is declared with a final keyword cannot be modified by the program after initialization. Java Final method In the final method, when we make any method as final, then we cannot override it, or we can say subclasses cannot override the method.

  5. Example of Final method

  6. Output Compile time error Java Final class In java final class, the class cannot be inheriting by other classes. If we make any class as final, then we cannot extend it.

  7. Example of Final class Output Compile time error

  8. Final method inherited Example Output Car is running The Final method is inherited but cannot override

  9. Blank Final variable Example Output 100

  10. Thank You!! Call us: 70-70-90-50-90 www.ducatindia.com

More Related