Search code examples
c++referencedynamic-rebinding

How can I change the variable to which a C++ reference refers?


If I have this:

int a = 2;
int b = 4;
int &ref = a;

How can I make ref refer to b after this code?


Solution

  • This is not possible, and that's by design. References cannot be rebound.