081.C++中的引用-常量引用

#include <iostream>
using namespace std;

//打印数据函数
void showvalue(const int& val)
{
    cout << "val=" << val << endl;
}

int main()
{

    //常量引用
    //使用场景,用来修饰形参,防止误操作

    //int a = 10;
    //加上const之后 编译器将代码修改 int temp=10;const int &ref=temp;
    //const int& ref = 10;//引用必须引用一块合法的内存空间
    //ref=20;//加入const之后变为只读,不可以修改

    int a = 100;
    showvalue(a);
    cout << "a=" << a << endl;


    system("pause");
    return 0;
}

 

081.C++中的引用-常量引用

上一篇:冒泡排序


下一篇:hdu7047 /2021“MINIEYE杯”中国大学生算法设计超级联赛(7) 1004 Link with Balls