首页 > 编程语言 > 详细

C++的常引用

时间:2015-04-01 23:56:15      阅读:458      评论: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
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!