often used seldom defined terms: lvalue

后端 未结 8 1776
南旧
南旧 2020-11-27 17:25

What is an lvalue?

8条回答
  •  爱一瞬间的悲伤
    2020-11-27 18:20

    Something that appears on the left hand side of an assignment i.e. something that can be assigned to.

    Note that in C++ a function call may be an lvalue if:

    int & func() {
       static int a = 0;
       return a;
    }
    

    then:

    func() = 42;     // is legal (and not uncommon)
    

提交回复
热议问题