Automation QA Testing Course Content

Why Java Interfaces Cannot Have Constructor But Abstract Classes Can Have?

 

Why Java Interfaces Cannot Have Constructor But Abstract Classes Can Have?


Constructor is a special member function used to initialize the newly created object. It is automatically called when an object of a class is created.

Why interfaces can not have the constructor?

  • An Interface is a complete abstraction of class. All data members present in the interface are by default public, static, and final. All the static final fields should be assigned values at the time of declaration, otherwise it will throw compilation error saying “variable variable_Name not initialized in default constructor”.
  • The methods inside the interface are by default public abstract which means the method implementation cannot be provided by the interface itself, it has to be provided by the implementing class. Therefore, no need of having a constructor inside the interface.
  • A constructor is used to initializing non-static data members and as there are no non-static data members in the interface, there is no need of constructor
  • Methods present in the interface are only declared not defined, As there is no implementation of methods, there is no need of making objects for calling methods in the interface and thus no point of having constructor in it.
  • If we try to create a constructor inside the interface, the compiler will give a compile-time error.

Why abstract classes have a constructor

  • The main purpose of the constructor is to initialize the newly created object. In abstract class, we have an instance variable, abstract methods, and non-abstract methods. We need to initialize the non-abstract methods and instance variables, therefore abstract classes have a constructor.
  • Also, even if we don’t provide any constructor the compiler will add default constructor in an abstract class.
  • An abstract class can be inherited by any number of sub-classes, thus functionality of constructor present in abstract class can be used by them.
  • The constructor inside the abstract class can only be called during constructor chaining i.e. when we create an instance of sub-classes. This is also one of the reasons abstract class can have a constructor.

No comments:

Post a Comment

Note: Only a member of this blog may post a comment.