C++ 绑定规则 Posted on 2024年2月29日2024年2月29日 by mindthink 左值可以绑定到左值引用 左值不可以绑定到右值引用 右值可以绑定到左值常量引用 右值可以绑定到右值非常量引用 &…