모든 C++ 식에는 형식이 있으며 값 범주에 속한다. 값 범주는 식 평가중에 임시 객체를 만들고 복사하고 이동할 떄 컴파일러가 따라야 하는 규칙의 기초이다.
C++ 17 standard 식 값 범주 (expression value categories):
// lvalues_and_rvalues2.cpp
int main()
{
int i, j, *p;
// Correct usage: the variable i is an lvalue and the literal 7 is a prvalue.
i = 7;
// Incorrect usage: The left operand must be an lvalue (C2106).`j * 4` is a prvalue.
7 = i; // C2106
j * 4 = 7; // C2106
// Correct usage: the dereferenced pointer is an lvalue.
*p = i;
// Correct usage: the conditional operator returns an lvalue.
((i < 3) ? i : j) = 7;
// Incorrect usage: the constant ci is a non-modifiable lvalue (C3892).
const int ci = 7;
ci = 9; // C3892
}