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

空闲时候思考之C++的临时量

时间:2015-07-28 13:04:46      阅读:167      评论:0      收藏:0      [点我收藏+]

标签:

#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());
}
技术分享

版权声明:本文为博主原创文章,未经博主允许不得转载。

空闲时候思考之C++的临时量

标签:

原文地址:http://blog.csdn.net/kai8wei/article/details/47102953

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