I've been brushing up on C++ in preparation for a class, and something that's stumped me is returning a reference vs. returning a value (also vs. returning a const reference, but that's not really part of the question). Something I've read in several places is that you'd want a function or method to return a reference so that it can be chained. For instance, the standard assignment operator allows you to do stuff like:
a = b = c = d;
Instead of having to do:
c = d;
b = c;
a = b;
What I'm having trouble wrapping my head around, or finding a simple explanation of, is why returning a reference allows you to do chaining while returning a value would not? What goes wrong with chaining when a value is returned?