10.5 常量引用

    技术2022-07-10  105

    10.5 常量引用

    用const修饰的引用成为常量引用,这样引用关系不能修改,引用的数据也不能修改。常量引用经常用作函数的形参,这样可以方式误操作修改了实参。

    #include<iostream> using namespace std; void showValue(const int& val) { //val = 1000; //错误,常量引用不能修改值 cout << "val=" << val << endl; } int main() { int a = 10; showValue(a); cout << "a=" << a << endl; system("pause"); return 0; }

    Processed: 0.106, SQL: 9