关于 “常量引用可以绑定非常量对象” 的问题

引自C++PRIMER  FOURTH EDITION

① A noconst reference may be only attached to an object of the same type as the reference itself.

② A const reference may be bound to an object of a different type but related type or to an rvalue(right value : 右值)

我个人觉得第一句话每个人programmer理解起来都没有任何问题,但是第二句话会出现一个令人困惑的问题:

Question : "const reference could refer to a noconst object"

    int m = 10 ;
    const int &k = m

我们会有一样的疑问和不理解,疑问的根源是被const修饰后的variable是不能发生变化的。

那依据上面这条代码,我现在修改m的值,岂不是就改变了引用k的值,这与const自相矛盾...

代码和结果如下:

#include<iostream>
using namespace std ;
int main()
{
    int i = 10 ;
    int &j = i ;// j refers to i;
    i = 11 ;// change the value of variable,i .
    cout << "i = " <<
  • 1
    点赞
  • 2
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值