Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
在阅读有关右值的文章时,我偶然发现了一段代码:
int main() { int& foo(); }
而且我不太确定括号中的foo()含义是什么意思,或者它是如何使用的。我假设它与函数有关,但我可能是错的。
foo()
它是一个foo不带参数并返回对整数的引用的函数声明。
foo
它在另一个函数的范围内声明一个函数。
它是稍后定义的函数的局部声明。它是本地的,可以在本地使用。