c++是这么说的构造函数是为了处理对象的初始化问题的,构造函数是一种特殊的成员函数,与其他成员函数不同,不需要用户赖掉用它,而是在建立对象时自动执行。构造函数的名字必须与类名同名,而不能由用户任意命名,以便编译系统能识别它并把它作为构造函数处理。
#include <iostream>
using namespace std;
class Time
{public:
Time()
{hour=0;
minute=0;
sec=0;
}
void set_time();
void show_time();
private:
int hour;
int minute;
int sec;
};
void Time::set_time()
{cin>>hour;
cin>>minute;
cin>>sec;
}
void Time::show_time()
{
cout<<hour<<":"<<minute<<":"<<sec<<endl;
}
int main()
{
Time t1;
t1.show_time();
Time t2;
t2.show_time();
return 0;
} |