First page
Back
Continue
Last page
Graphics
Constructors
Member functions that are called when an object is instantiated.
Constructor name is the same as the class.
class Date {
public:
Date(int, int, int);
// ...
private:
int d, m, y;
};