The default constructor for class X is one that takes no arguments; : constructor « Class « C++ Tutorial






//If no user-defined constructors exist for a class,
//C++ system generates a default constructor.

#include <iostream.h>
class Time
{
               int hh,mm,ss;
  public:
               //Time(){hh=0;mm=0;ss=0;}
               void Set(int h, int m, int s)   {hh = h; mm = m; ss=s;}
               void Disp();
};
void Time::Disp()
{
               cout << "The time is " << hh << ":" << mm << ":" << ss <<endl;
}
int main()
{
               Time t1;
               t1.Disp();
               t1.Set(2,22,22);                t1.Disp();
               return 0;
}
The time is 2009312941:16:0
The time is 2:22:22








9.2.constructor
9.2.1.A parameterized constructor
9.2.2.Use constructor to initialize class fields
9.2.3.Initialize variables and conduct calculation in constructor
9.2.4.Overload the constructor
9.2.5.Copy constructors
9.2.6.Constructor as conversion operator
9.2.7.Virtual copy constructor
9.2.8.overload constructor
9.2.9.Overload constructor two ways: with initializer and without initializer
9.2.10.Call class constructor or not during class array declaration
9.2.11.Call default constructor when allocating an array dynamically
9.2.12.Call constructor from base class to initialize fields inherited from base class
9.2.13.Overload constructor for different data format
9.2.14.Defining and using a default class constructor
9.2.15.Constructor parameter with default value
9.2.16.If a constructor only has one parameter
9.2.17.The default constructor for class X is one that takes no arguments;