Eachexpression in C (an operator with its arguments, a function call, a constant, a variable name, etc) is characterized by two independent properties: atype and avalue category.
Every expression belongs to one of three value categories: lvalue, non-lvalue object (rvalue), and function designator.
Contents |
Lvalue expression is any expression withobject type other than the typevoid, which potentially designates anobject (the behavior is undefined if an lvalue does not actually designate an object when it is evaluated). In other words, lvalue expression evaluates to theobject identity . The name of this value category (“left value”) is historic and reflects the use of lvalue expressions as the left-hand operand of the assignment operator in the CPL programming language.
Lvalue expressions can be used in the followinglvalue contexts :
If an lvalue expression is used in any context other thansizeof,_Alignof, or the operators listed above, non-array lvalues of any complete type undergolvalue conversion, which models the memory load of the value of the object from its location. Similarly, array lvalues undergoarray-to-pointer conversion when used in any context other thansizeof,_Alignof, address-of operator, or array initialization from a string literal.
The semantics ofconst/volatile/restrict-qualifiers andatomic types apply to lvalues only (lvalue conversion strips the qualifiers and removes atomicity).
The following expressions are lvalues:
-> operator*) operator applied to a pointer to object[])Amodifiable lvalue is any lvalue expression of complete, non-array type which is notconst-qualified, and, if it's a struct/union, has no members that areconst-qualified, recursively.
Only modifiable lvalue expressions may be used as arguments to increment/decrement, and as left-hand arguments of assignment and compound assignment operators.
Known asrvalues , non-lvalue object expressions are the expressions of object types that do not designate objects, but rather values that have no object identity or storage location. The address of a non-lvalue object expression cannot be taken.
The following expressions are non-lvalue object expressions:
* operatorAs a special case, expressions of typevoid are assumed to be non-lvalue object expressions that yield a value which has no representation and requires no storage.
Note that a struct/union rvalue that has a member (possibly nested) of array type does in fact designate an object withtemporary lifetime. This object can be accessed through lvalue expressions that form by indexing the array member or by indirection through the pointer obtained by array-to-pointer conversion of the array member. | (since C99) |
A function designator (the identifier introduced by afunction declaration) is an expression of function type. When used in any context other than the address-of operator,sizeof, and_Alignof (the last two generate compile errors when applied to functions), the function designator is always converted to a non-lvalue pointer to function. Note that the function-call operator is defined for pointers to functions and not for function designators themselves.
C++ documentation forValue categories |