1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 |
#include <iostream> // 输出流库 using namespace std; // 使用标准命名空间 // 课程:04 引用 - 引用做函数返回值 // 不要返回局部变量的引用 int &test01() { int a = 10; // 局部变量数据存放在栈区 return a; } // 2、函数的调用可以作为左值 int &test02() { static int a = 10; // 静态变量,存放在全局区,全局区上的数据在程序结束后系统释放 return a; } // 程序入口函数 int main() { // system("chcp 65001"); // 临时设置UTF-8编码 int &ref1 = test01(); // cout << "ref1 = " << ref1 << endl; //编译器会报错,所以引用局部变量是错误的 int &ref2 = test02(); cout << "ref2 = " << ref2 << endl; cout << "ref2 = " << ref2 << endl; test02() = 1000; // 如果函数的返回值是引用,这个函数调用可以作为左值 cout << "ref2 = " << ref2 << endl; cout << "ref2 = " << ref2 << endl; system("pause"); // 控制台暂停,等待下一步操作 return 0; // 结束返回值:0 } |
11.4 引用-引用做函数返回值
未经允许不得转载:Ai分享 » 11.4 引用-引用做函数返回值