首页 > 编程语言 > 详细

《Effective C++》条款10:令operator=等运算符返回reference to *this(连等左值)

时间:2020-12-04 08:58:04      阅读:18      评论:0      收藏:0      [点我收藏+]

该条款主要是为了连锁形式而服务,即形如:

x=y=z=15;

即:

x=(y=(z=15));

 

为了能够实现该功能,常常采用返回赋值符号的左边变量(当然其他操作也可以这样进行);

即如下所示:

class wideget {
public:
	wideget& operator+=(const wideget& rhs) {
		//...do something;
		return *this;
	}
	wideget& operator=(const wideget& rhs) {
		return *this;
	}
};

  

《Effective C++》条款10:令operator=等运算符返回reference to *this(连等左值)

原文:https://www.cnblogs.com/songlinxuan/p/14083626.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!