(1)构造函数的名字必须与类名相同
(2)构造函数可以有任意类型的参数,但不能指定返回类型。它有隐含的返回值,该值由系统内部使用。
(3)构造函数是特殊的成员函数,函数体可写在类体内,也可写在类体外。
(4)构造函数可以重载,即一个类中可以定义多个参数个数或参数类型不同的构造函数。
(5)构造函数被声明为公有函数,但它不能像其他成员函数那样被显式地调用,它是在定义对象的同时被调用的。
/*
*不带参数的构造函数
*/
#include
using namespace std;
class Date
{
private:
int year, month, day;
public:
Date();
void GetDate();
};
Date::Date()
{
year = 2011; month = 8; day = 2;
}
void Date::GetDate()
{
cout<
}
int main(void)
{
Date data;
data.GetDate();
}
/*
*带参数的构造函数
*注意理解
*/
#include
using namespace std;
class Date
{
private:
int year, month, day;
public:
Date();
Date(int y, int m, int d);
void GetDate();
};
Date::Date()
{
year = 2011; month = 8; day = 2;
}
Date::Date(int y, int m, int d)
{
year = y; month = m; day = d;
}
void Date::GetDate()
{
cout<
}
int main(void)
{
Date data, data1(2016, 2, 21);
data.GetDate();
data1.GetDate();
return 0;
}
阅读(1326) | 评论(0) | 转发(0) |