引用

引用一定程度弥补了指针的“野蛮”。

引用只有声明,没有定义,一旦绑定不能再换(外号不能再给别人)。

只有具体类型的对象才能被引用。

    int temp=1;
    int temp2=2;

    int &b = temp;
    b=temp2; //temp2的值赋给b
    cout<<b<<endl; //output:2

const引用锁死引用的被赋值

    int temp=1;

    const int &a=temp;
    // int& const a=temp; //语法error: 'const' qualifiers cannot be applied to 'int&'
    cout<<a<<endl; //output:1
    // a=3;    //error: assignment of read-only reference 'a'
    temp=3;    // temp依然可以改变
    cout<<a<<endl; //output:3,a与temp绑定

 

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值