Definitions for "Default constructor"
The type of constructor in an Oracle Call Interface (OCI) call that creates an empty instance of the constructor.
In C++, a constructor that either accepts no arguments or for which all arguments have a default value. The default constructor can be defined by the user or generated by the compiler. See also constructor, copy constructor.
a constructor taking no arguments (or a constructor with all the arguments having defaults)
a member function that is used to create an object when no initial value is specified for that object
A method that creates an empty instance of an object.