可能重复:
C++ 中的引用
int & 是什么意思
我很难理解int &f = d
以下代码中的语句。如果有人能解决这个问题,我将不胜感激
int main()
{
int d = 13 ;
int &f = d ;
std::cout << f;
}
编辑:我熟悉引用的概念对不起我没有提供足够的背景。我知道如果我做这样的事情
int a = 12
std::cout << &a //this gives the address of a and not the content of the address which is 12
现在我 int &f = d
的问题对我来说是 f 似乎需要一个地址,而 d 给它一个值而不是地址。