

- Trending Categories
Data Structure
Networking
RDBMS
Operating System
Java
iOS
HTML
CSS
Android
Python
C Programming
C++
C#
MongoDB
MySQL
Javascript
PHP
- Selected Reading
- UPSC IAS Exams Notes
- Developer's Best Practices
- Questions and Answers
- Effective Resume Writing
- HR Interview Questions
- Computer Glossary
- Who is Who
What is final parameter in Java
The final parameter is a keyword in java programming which is used to declare constants. for example
PIE, as you know the value of PIE, is 3.14 and it doesn't change therefore during programming you need to mention final int PIE.
also, by mentioning the final keyword in class and methods it restricts from inheritance and extending.
- Related Questions & Answers
- What is a final parameter in java?
- What is a final method in Java?
- What is a final variable in java?
- What is blank final variable? What are Static blank final variables in Java?
- What is static blank final variable in Java?
- Is StringBuffer final in Java?
- What is a blank uninitialized final variable in java?
- What is blank or uninitialized final variable in Java?
- Is final method inherited in Java?
- What are final classes in Java?
- What is an Optional parameter in C#?
- What is the difference between final, finally and finalize() in Java?
- What is the equivalent of Java static final fields in Kotlin?
- What is parameter binding in C# ASP.NET WebAPI?
- final keyword in Java
Advertisements