10 如何更改C ++参考所引用的变量? 如果我有这个: int a = 2; int b = 4; int &ref = a; 在此代码后如何ref引用b? 77 c++ reference dynamic-rebinding