Class Constructor Example
#include <iostream.h>
/*********************************************************
File: class3.C
Instantiate a date class, initialize the date object,
and print it. Initialization is done using a constructor.
*********************************************************/
class date {
int day;
int month;
int year;
public:
date(int , int , int );
void print();
};
date::date(int d, int m, int y)
{
day = d;
month = m;
year = y;
}
void date::print()
{
cout << "The date stored in this object is:" << endl;
cout << "Day: " << day << endl;
cout << "Month: " << month << endl;
cout << "Year: " << year << endl;
}
typedef date Date;
int main()
{
int day, month, year;
cout << "Enter today's date in DD MM YYYY format: ";
cin >> day >> month >> year;
Date today(day, month, year);
today.print();
exit(0);
}
Back to Previous Page
Document:
Local Date:
Last Modified On: