传统 C++ 将数据类型 int& 视为“对 int 的引用”。
int&
int
现代 C++ 对其进行了细化,因此 int& 现在更准确地说是“对 int 的左值引用”。这与 int&& 相区分,后者是“对 int 的右值引用”。
int&&