int &r = 10; // error: cannot bind non-const lvalue reference of type 'int&' to an rvalue of type 'int'. 不過,加上 const 的話倒是可以: const int &r = 10;.
確定! 回上一頁