Is there any default constructor?

A default constructor is a constructor that either has no parameters , or if it has parameters, all the parameters have default values. If no user-defined constructor exists for a class A and one is needed, the compiler implicitly declares a default parameterless constructor A::A() .

Read more

Can a default constructor be empty?

Providing an empty default constructor( private ) is necessary in those cases when you don’t want an object of the class in the whole program . For e.g. the class given below will have a compiler generated default empty constructor as a public member . As a result, you can make an object of such a class.

Read more