C++ —— 类的六个默认成员函数

类的六个默认成员函数

  1. 构造函数

  2. 析构函数

  3. 拷贝构造函数

  4. 赋值操作符重载

  5. 取地址操作符重载

  6. const修饰的取地址操作符重载

一. 构造函数

	class Date
	{ 
	public:
		void Date(int year, int month, int day)
		{
			_year = year;
			_month = month;
			_day = day;
		}

	private:
		int _year;
		int _month;
		int _day;
	};
	int main()
	{
		Date d(2020,9,20);
		return 0;
	}

  1. 构造函数是一个特殊的成员函数,名字与类名相同,创建类类型对象时由编译器自动调用,保证每个数据成员都有 一个合适的初始值,并且在对象的生命周期内只调用一次。

  2. 构造函数是特殊的成员函数,构造函数的虽然名称叫构造,但是需要注意的是构造函数的主要任务并不是开空间创建对象,而是初始化对象。

其特征如下:
 ★函数名与类名相同。
 ★无返回值。
 ★对象实例化时编译器自动调用对应的构造函数。
 ★构造函数可以重载。

	class Date
	{
	public :
	// 1.无参构造函数
		Date ()
		{}

	// 2.带参构造函数
		Date (int year, int month , int day )
		{
			_year = year ;
			_month = month ;
			_day = day ;
		}
	private :
		int _year ;
		int _month ;
		int _day ;
	};
	int main()
	{
		Date d1; // 调用无参构造函数
		Date d2 (2015, 1, 1); // 调用带参的构造函数
	}

 ★如果类中没有显式定义构造函数,则C++编译器会自动生成一个无参的默认构造函数,一旦用户显式定义编译器将不再生成.
 ★无参的构造函数和全缺省的构造函数都称为默认构造函数,并且默认构造函数只能有一个。注意:无参构造函数、全缺省构造函数、我们没写编译器默认生成的构造函数,都可以认为是默认成员函数。

	class Date
	{ 
	public:
		Date()//无参的构造函数
		{
			_year = 1900 ;
			 _month = 1 ;
			 _day = 1;
		 }

		Date (int year = 1900, int month = 1, int day = 1)//全缺省构造函数
		{
			_year = year;
			_month = month;
			_day = day;
		}
	private :
		int _year ;
		int _month ;
		int _day ;
	};

二. 析构函数

  1. 与构造函数功能相反,析构函数不是完成对象的销毁,局部对象销毁工作是由编译器完成的。而对象在销毁时会自动调用析构函数,完成类的资源清理工作。
  2. 特性:析构函数是特殊的成员函数。
其特征如下:

  ★析构函数名是在类名前加上字符 ~。
  ★无参数无返回值。
  ★一个类有且只有一个析构函数。若未显式定义,系统会自动生成默认的析构函数。
  ★对象生命周期结束时,C++编译系统系统自动调用析构函数。

class SeqList
{ 
public :
	SeqList (int capacity = 10)
	{
		_p = (int*)malloc(capacity * sizeof(int));
		assert(_p);
		_size = 0;
		_capacity = capacity;
		}
	~SeqList()
	{
		if (_p)
		{
			free(_p ); // 释放堆上的空间
			_p = NULL; // 将指针置为空
			_capacity = 0;
			_size = 0;
		}
	}

private :
	int* _p ;
	size_t _size;
	size_t _capacity;
};

  ★编译器生成的默认析构函数,对会自定类型成员调用它的析构函数。

三. 拷贝构造函数

  1. 拷贝构造函数:只有单个形参,该形参是对本类类型对象的引用(一般常用const修饰),在用已存在的类类型对象创建新对象时由编译器自动调用。
  2. 特性:
  拷贝构造函数也是特殊的成员函数,其特征如下:

  ★拷贝构造函数是构造函数的一个重载形式。
  ★拷贝构造函数的参数只有一个且必须使用引用传参,使用传值方式会引发无穷递归调用。

class Date
{
public:
	Date(int year = 1900, int month = 1, int day = 1)
	{
		_year = year;
		_month = month;
		_day = day;
	}
	Date(const Date& d)
	{ 
		_year = d._year;
		_month = d._month;
		_day = d._day;
	}
	private:
		int _year;
		int _month;
		int _day;
};
int main()
{
	Date d1;
	Date d2(d1);
	return 0; 
}

  ★若未显示定义,系统生成默认的拷贝构造函数。 默认的拷贝构造函数对象按内存存储按字节序完成拷贝,这种拷贝我们叫做浅拷贝,或者值拷贝。

class Date
{
public:
	Date(int year = 1900, int month = 1, int day = 1)
	{
		_year = year;
		_month = month;
		_day = day;
	}
private:
	int _year;
	int _month;
	int _day;
};
int main()
{
	Date d1;
	Date d2(d1);// 这里d2调用的默认拷贝构造完成拷贝,d2和d1的值也是一样的。
	return 0; 
}

四. 赋值操作符重载

   C++为了增强代码的可读性引入了运算符重载,运算符重载是具有特殊函数名的函数,具有其返回值类型,函数名字以及参数列表,其返回值类型与参数列表与普通的函数类似。

  函数名字为:关键字operator后面接需要重载的运算符符号。

  函数原型:返回值类型 operator操作符(参数列表)

注意:

★ 不能通过连接其他符号来创建新的操作符:比如operator@

★ 重载操作符必须有一个类类型或者枚举类型的操作数

★ 用于内置类型的操作符,其含义不能改变,例如:内置的整型+,不 能改变其含义

★ 作为类成员的重载函数时,其形参看起来比操作数数目少1成员函数的

★ 操作符有一个默认的形参this,限定为第一个形参

★ .* 、:: 、sizeof 、?: 、. 注意以上5个运算符不能重载。

class Date
{ 
public:
	Date(int year = 1900, int month = 1, int day = 1)
	{
		_year = year;
		_month = month;
	 _day = day;
	}

	 // bool operator==(Date* this, const Date& d2)
	// 这里需要注意的是,左操作数是this指向的调用函数的对象
	bool operator==(const Date& d2)
	{
		return _year == d2._year;
			&& _month == d2._month
			&& _day == d2._day;
	}
private:
	int _year;
	int _month;
	int _day;
};
int main ()
{
	Date d1(2020, 9, 20);
	Date d2(2020, 9, 21);
	cout<<(d1 == d2)<

赋值操作符重载

class Date
{ 
public :
	Date(int year = 1900, int month = 1, int day = 1)
	{
		_year = year;
		_month = month;
		_day = day;
	}
	Date& operator=(const Date& d)
	{
		if(this != &d)
		{
			_year = d._year;
			_month = d._month;
			_day = d._day;
		}
		return *this;
	}
private:
	int _year ;
	int _month ;
	int _day ;
};
int main()
{
	Date d1(2020,9,20);
	Date d2;
	d2=d1;
	return 0;
}

   一个类如果没有显式定义赋值运算符重载,编译器也会生成一个,完成对象按字节序的值拷贝。

五. 取地址及const取地址操作符重载

class Date
{ 
public :
	Date* operator&()
	{
		return this ;
	}

	const Date* operator&()const
	{
		return this ;
	}
private :
	int _year ; 
	int _month ; 
	int _day ; 
};

这两个运算符一般不需要重载,使用编译器生成的默认取地址的重载即可,只有在特殊的情况下,才需要重载,比如你想让获取到指定的内容!

const修饰类的成员函数

在这里,我们又涉及到了const修饰类的成员函数。

  将const修饰的类成员函数称之为const成员函数,const修饰类成员函数,实际修饰该成员函数隐含的this指针,表明在该成员函数中不能对类的任何成员进行修改。

class Date
{ 
public :
	void Display ()
	{
		cout<<"Display ()" <

在这里插入图片描述
注意:const 修饰成员函数有两种;

  1. 当const 处在成员函数的最前面时,它代表的意思是该函数的返回值不可被修改;
  2. 当const 处在成员函数的最末尾时,它代表的意思是该函数的成员变量不可被修改。

你可能感兴趣的:(c++,开发语言,mfc)