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

C++的常引用

时间:2015-04-01 23:58:41      阅读:357      评论:0      收藏:0      [点我收藏+]

标签:

Reference to const

We can bind a reference to const to a nonconst object, a literal, or a more general expression:

    int i = 42;				
	const int &r1 = i;		//bind a const int& to a plain int object
	const int &r2 = 42;		//ok.r1 is a reference to const
	const int &r3 = r1 * 2;         //ok.r3 is a reference to const
	int &r4 = i * 1;		//error.r4 is a plain,nonconst reference
    double dval= 30;
	const int &rDval = dval; 
	dval = 42;
	cout << rDval << endl; // print 30

The compiler transforms this code into something like:

    const int temp = dval;
	const int &rDval = temp;

In this case, rDval is bound to a temportary object.

C++的常引用

标签:

原文地址:http://my.oschina.net/hejunsen/blog/394883

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