Chinaunix首页 | 论坛 | 博客
  • 博客访问: 155732
  • 博文数量: 44
  • 博客积分: 0
  • 博客等级: 民兵
  • 技术积分: 407
  • 用 户 组: 普通用户
  • 注册时间: 2015-11-10 13:28
个人简介

仰望星空

文章分类
文章存档

2016年(22)

2015年(22)

我的朋友

分类: C/C++

2016-03-07 09:22:42

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) |
给主人留下些什么吧!~~