傳統 C++ 將資料型別 int& 視為“對 int 的引用”。
int&
int
現代 C++ 對其進行了細化,因此 int& 現在更準確地說是“對 int 的左值引用”。這與 int&& 相區分,後者是“對 int 的右值引用”。
int&&