C++中的引用——常量引用

mac2024-11-16  6

作用:常量引用主要用来修饰形参,防止误操作。 示例:

//打印数据 void showValue( const int &val) { //val = 1000;(有了const之后,防止对数据的误操作) cout << "val=" << val << endl; } int main() { int a = 10; //int &ref = 10;(错误)引用必须引一块合法的内存空间 const int &ref = 10;//合法,加上const之后编译器将代码修改,int temp=10;const int & ref=temp; showValue(a); system("pause"); return 0; }

来源:黑马程序员

最新回复(0)