1.赋值运算符重载

(1)运算符重载

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

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

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

注意:
a.不能通过连接其他符号来创建新的操作符:比如operator@
b.重载运算符必须有一个类类型或者联合的操作数
c.用于内置类型的操作符,其含义不能改变,例如:内置的整型+,不 能改变其含义
d.作为类成员的重载函数时,其形参看起来比操作数数目少1成员函数的操作符有一个默认的形参this,限定为第一个形参
e..* 、:: 、sizeof 、?: 、==. == 注意以上5个运算符不能重载。这个经常在笔试选择题中出现。

class Date
{
public:
	Date(int year = 1999, int month = 8, int day = 2)
	{
		_year = year;
		_month = month;
		_day = day;
	}
//private:
	int _year;
	int _month;
	int _day;
};

bool operator==(const Date& d1, const Date& d2)
{
	return d1._year == d2._year &&
		d1._month == d2._month &&
		d1._day == d2._day;
}


void Teat()
{
	Date d1(2018, 9, 26);
	Date d2(2018, 9, 27);
	cout << (d1 == d2) << endl;

}
class Date
{
public:
	Date(int year = 1999, int month = 8, int day = 2)
	{
		_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;
};

(2)赋值运算符重载

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

	Date(const Date& d)//拷贝构造函数
	{
		_year = d._year;
		_month = d._month;
		_day = d._day;
	}

	Date& operator=(const Date& d)//赋值运算符重载
	{
		if (this != &d)
		{
			_year = d._year;
			_month =d. _month;
			_day = d._day;
		}
	}

private:
	int _year;
	int _month;
	int _day;
};

赋值运算符主要有四点:

  1. 参数类型
  2. 返回值
    3. 检测是否自己给自己赋值
    ==4. 返回*this ==
  3. 一个类如果没有显式定义赋值运算符重载,编译器也会生成一个,完成对象按字节序的值拷贝,如下程序
class Date
{
public:
	Date(int year = 1999, int month = 8, int day = 2)
	{
		_year = year;
		_month = month;
		_day = day;
	}

private:
	int _year;
	int _month;
	int _day;
};



int main()
{
	Date d1;
	Date d2(1999, 8, 1);

	//这里d1调用了编译器生成的operator=完成拷贝,d1和d2的值也是一样的
	d1 = d2;
	return 0;
}