Joseph Mansfield discusses about an important topic in C++:
The lvalue/rvalue metaphor
by Joseph Mansfield
From the article:
Every expression in C++ is either an lvalue or an rvalue. This distinction is what makes something like
5 = x;
invalid, as the expression 5 is an rvalue expression and so cannot appear on the left of an assignment...
Add a Comment
Comments are closed.