码迷,mamicode.com
首页 > 编程语言 > 详细

C++ class内的=重载,拷贝赋值函数,重载示例。必须是class内

时间:2019-12-01 12:08:34      阅读:90      评论:0      收藏:0      [点我收藏+]

标签:overload   隐藏   clu   cpp   友元   highlight   delete   include   str   

#include <iostream>

// overloading "operator = " inside class
// = 是一元操作符。不写,编译器会提供 默认 拷贝赋值函数。可以通过显式“=delete”来禁用默认。对于复杂class的默认=可能会造成问题,请特别注意。

//////////////////////////////////////////////////////////

class Rectangle
{
public:
	Rectangle(int w, int h) 
		: width(w), height(h)
	{};

	~Rectangle() {};

	bool operator== (Rectangle& rec);

	Rectangle& operator= (Rectangle& rec);


public:
	int width;
	int height;
};

//////////////////////////////////////////////////////////
bool 
Rectangle::operator==(Rectangle & rec)//相同的class对象互为友元,所以可以访问private对象。== 是二元操作符,class内隐藏了this
{
	return this->height == rec.height
		&& this->width == rec.width;
}

Rectangle&
Rectangle::operator=(Rectangle & rec)
{
	// 一定要在 = 中进行自我复制检查!所以要先定义 == 方法。
	// 避免不必要的开销,以及避免影响正在使用既有的变量的某些函数。

	if (*this == rec)
		return *this;

	this->height = rec.height;
	this->width = rec.width;

	return *this;

}

//////////////////////////////////////////////////////////

int main()
{
	Rectangle a(40, 10);
	Rectangle b = a;

	std::cout << (a == b) << std::endl;

	return 0;
}

  

C++ class内的=重载,拷贝赋值函数,重载示例。必须是class内

标签:overload   隐藏   clu   cpp   友元   highlight   delete   include   str   

原文地址:https://www.cnblogs.com/alexYuin/p/11965172.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!