在 Visual Studio 2010 中编译以下代码时会发生这种情况。我的问题是:如果函数返回局部变量的地址,C++ 编译器会发出警告,但为什么在返回对局部变量的局部引用时不发出警告?
它仍然是错误的(返回对局部变量的局部引用),只是编译器无法检测到它?检查“num”和“r”的地址会发现它们共享相同的内存位置。
#include <iostream>
using namespace std;
int & intReference() {
int num = 5;
int &r = num;
cout << "\nAddress of num: " << #
//return num; // Compiler warning: C4172: returning address of local variable or temporary
return r; // No warning?
}
void main() {
int &k = intReference();
cout << "\nk = " << k; // 5
cout << "\nAddress of k: " << &k; // same address as num
char c;
cin.get(c);
}