首页 > 其他 > 详细

链式赋值为何要返回&

时间:2016-07-29 17:12:33      阅读:203      评论:0      收藏:0      [点我收藏+]
#include<iostream>

using namespace std;

class A{
public:
    A(int x_):x(x_){};
    A/*&*/ operator =(A& h)/*&*/;       //加上后置&就不合法,默认情况他同时支持向左值(&)和右值(&&)赋值
    friend ostream& operator << (ostream& out,const A & h);
private:
    int x;
};
    inline A A::operator =(A& h)
    {
        x = h.x;
        return *this;
    }

    ostream& operator << (ostream& out,const A & h)
    {
        out << h.x;
        return out;
    }
int main(void)
{
    A q(1);
    A w(2);
    A e(3);
    cout << q << " " << w << " " << e << endl;

    //q = w = e;


    (q = w) = e ;   //把值赋给了临时右值
    cout << q << " " << w << " " << e << endl;
    return 0;
}

 

链式赋值为何要返回&

原文:http://www.cnblogs.com/7-29/p/5718908.html

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