
- 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
Why a constructor cannot be final in Java?
Whenever you make a method final, you cannot override it. i.e. you cannot provide implementation to the superclass's final method from the subclass.
i.e. The purpose of making a method final is to prevent modification of a method from outside (child class).
In inheritance whenever you extend a class. The child class inherits all the members of the superclass except the constructors.
In other words, constructors cannot be inherited in Java therefore you cannot override constructors.
So, writing final before constructors makes no sense. Therefore, java does not allow final keyword before a constructor.
If you try, make a constructor final a compile time error will be generated saying “modifier final not allowed here”.
Example
In the following Java program, the Student class has a constructor which is final.
public class Student { public final String name; public final int age; public final Student() { this.name = "Raju"; this.age = 20; } public void display() { System.out.println("Name of the Student: "+this.name ); System.out.println("Age of the Student: "+this.age ); } public static void main(String args[]) { new Student().display(); } }
Compile time error
On compiling, the above program generates the following error.
Student.java:6: error: modifier final not allowed here public final Student(){ ^ 1 error
- Related Questions & Answers
- Why constructor cannot be final in Java
- Can a constructor be made final in Java?
- Why Java wouldn't allow initialization of static final variable in a constructor?
- Why can't a Java class be both abstract and final?
- Why should a blank final variable be explicitly initialized in all Java constructors?
- Can we declare constructor as final in java?
- Can a constructor be overridden in java?
- Can a constructor be synchronized in Java?
- Why variables defined in try cannot be used in catch or finally in java?
- Why Final Class used in Java?
- Can a final class be subclassed in Java?
- What happens when you declare a method/constructor final in Java?
- Why variables are declared final in Java
- Why "this" keyword cannot be used in the main method of java class?
- Why an interface cannot implement another interface in Java?