C++学习第六十一篇
作者:互联网
/*
* 常量引用
* 作用:常量引用主要用来修饰形参,防止误操作
* 在函数参数列表中,可以加const修饰形参,防止形参改变实参
*/
#include<iostream>
using namespace std;
//引用使用的场景,通常用来修饰形参
void showValue(const int& v)
{
//v += 10;
cout << v << endl;
}
int main()
{
//int& ref = 10;//错误,引用本身需要一个合法的内存空间
//加入const就可以了,编译器优化代码,int temp = 10;const int& ref = temp;
const int& ref = 10;
//ref = 100;//加入const后不可以修改变量
cout << ref << endl;
//函数中利用常量引用防止误操作修改实参
int a = 10;
showValue(a);
system("pause");
return 0;
}
标签:const,常量,形参,第六十一,C++,学习,函数参数,引用,修饰 来源: https://blog.csdn.net/weixin_47358937/article/details/121643851