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

引用专题(续)=》 常量引用

时间:2017-01-18 23:30:58      阅读:199      评论:0      收藏:0      [点我收藏+]

标签:常量引用、const

常引用分两点:

  1 使用变量初始化const引用 const int &a = b

 2 使用字面量常量初始化const引用  const int &m = 10;

#include <iostream>
using namespace std;

void main()
{
    //普通引用
    int a = 10;
    int &b = a;
    printf("b"%d\n",b);
    
    
    //常引用
    int x = 20;
    const int &y = x; //常引用  作用:让变量拥有 只读属性 ;即不能通过y 去修改x
    
    
    //常引用的初始化分为2种情况
    //(1)用变量 初始化 常引用
    {
        int x1 = 30;
        const int &y1 = x1;//用x1变量去初始化 常引用
    }
    
    //(2)用字面量 初始化 常量引用
    {
        const int a = 40;
        int &m = 41; //普通引用 引用一个字面量 ,请问字面量有没有内存地址?答案:没有 
                     //编译报错
                     
        const int &m = 43;//C++编译器会分配内存空间              
    }
}

 3 const引用结论:

 技术分享

本文出自 “11907685” 博客,请务必保留此出处http://11917685.blog.51cto.com/11907685/1893026

引用专题(续)=》 常量引用

标签:常量引用、const

原文地址:http://11917685.blog.51cto.com/11907685/1893026

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