关于c++:c-value-category

62次阅读

共计 703 个字符,预计需要花费 2 分钟才能阅读完成。

微软官网解释


示例

glvalue

g 是 generalize 的意思,glvalue 是个形象的概念,是 lvalue 和 xvalue 的并集

lvalue

左值字面意思是能够放在右边的值,包含成员变量和能返回一个左值的函数

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
}

xvalue

x 是 expiring,xvalue 意思是行将走完生命周期的值,xvalue 有地址但程序无奈进入,例如函数返回右值援用的表达式,或者应用 move 语句这类传入的参数,这种参数快死掉了,就叫做 xvalue,例如 1 + 1, move(a), static_cast<>({xvalue})

rvalue

右值能够是纯右值,也能够是 xvalue

prvalue

不是 xvalue 的右值,即没有地址且程序无奈进入,例如字符,函数返回的非援用类型

正文完
 0