180 likes | 577 Views
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.
E N D
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
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.
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.
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.
Example of Final class Output Compile time error
Final method inherited Example Output Car is running The Final method is inherited but cannot override
Blank Final variable Example Output 100
Thank You!! Call us: 70-70-90-50-90 www.ducatindia.com