标签:
#include<iostream> using namespace std; class x { public: x(int ii=0); void modify(); x f8(); ~x(); x& operator=(const x &x1); private: int i; }; x::x(int ii/* =0 */):i(ii) { cout<<"x(): "<<this<<endl; } x::~x() { cout<<"~x() :"<<this<<endl; } x& x::operator=(const x &x1) { cout<<"=(): "<<this<<endl; if(&x1 != this) { i = x1.i; } return *this; } void x::modify() { cout<<"Modify: "<<this<<endl; i++; } x f5() { return x(); } const x f6() { return x();//返回一个无名的临时变量,临时量就会变成常量 } void f7( x &xx) { xx.modify(); } x x::f8() { cout<<"f8() :"<<this<<endl; return x(); } void main() { x a(1); f5() = a; f5().modify();//只是对临时对象的修改,并没有修改 f7(f5()); //f6() = x(1);//返回的const不可以作为左值 //f6().modify(); // f7(f6());//f7()中是引用需要引用f6()返回的临时对象的地址,所以会对临时对象进行修改所以此时编译器将临时对象置为const这就不可调用了 f7(f5().f8()); }
版权声明:本文为博主原创文章,未经博主允许不得转载。
标签:
原文地址:http://blog.csdn.net/kai8wei/article/details/47102953