码迷,mamicode.com
首页 > 其他好文 > 详细

函数返回值当左值的问题

时间:2017-04-09 22:37:03      阅读:229      评论:0      收藏:0      [点我收藏+]

标签:using   错误   运算   静态   sys   改变   clu   cout   names   

#include<iostream>
using namespace std;

int &get1()
{
	static int a = 10;
	return a;
}
int &get2()
{
	int b = 11;
	return b;
}
int &get3()
{
	int *c = new int;
		*c = 10;
	return *c;
}
//说局部变量是不能作为引用返回的
int main()
{
	int a1, b1,c1;
	a1 = get1();
	b1 = get2();
	c1 = get3();
	get1() = 100;
	get2() = 200;//这样子是不对的,因为b已经释放了。
	get3() = 300;//不是静态的就会释放,根本不能改变它的值
	cout << a1 << endl << b1 << endl << get1() << endl << get2() << endl;
	cout << c1 << endl << get3() << endl;

	system("pause");
}

  非静态局部变量不能当左值的,这样即便运算出结果不报错误也是不合理的,因为这里的局部变量已经调用就会释放。

函数返回值当左值的问题

标签:using   错误   运算   静态   sys   改变   clu   cout   names   

原文地址:http://www.cnblogs.com/xiaochige/p/6686770.html

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