Java’s Default Constructor The compiler automatically provides a no-argument, default constructor for any class without constructors . This default constructor will call the no-argument constructor of the superclass.
Read moreHow do default constructors work in Java?
Java Default Constructor If we do not create any constructor, the Java compiler automatically create a no-arg constructor during the execution of the program . This constructor is called default constructor.
Read more