Reference of Reference in C++

后端 未结 3 1702
别那么骄傲
别那么骄傲 2020-12-04 11:22

I see code on StackOverflow every once in a while, asking about some overload ambiguity with something involving a function like:

void foo(int&& para         


        
相关标签:
3条回答
  • 2020-12-04 11:48

    It's a rvalue reference, Bjarne describes it here.

    Shameless copying ("quoting"):

    The rvalue reference

    An rvalue reference is a compound type very similar to C++'s traditional reference. To better distinguish these two types, we refer to a traditional C++ reference as an lvalue reference. When the term reference is used, it refers to both kinds of reference: lvalue reference and rvalue reference.

    An lvalue reference is formed by placing an & after some type.

    A a; A& a_ref1 = a;  // an lvalue reference
    

    An rvalue reference is formed by placing an && after some type.

    A a; A&& a_ref2 = a;  // an rvalue reference
    

    An rvalue reference behaves just like an lvalue reference except that it can bind to a temporary (an rvalue), whereas you can not bind a (non const) lvalue reference to an rvalue.

    A&  a_ref3 = A();  // Error! 
    A&& a_ref4 = A();  // Ok
    
    0 讨论(0)
  • 2020-12-04 12:00

    It isn't a reference to a reference: such a thing does not exist.

    It is an rvalue reference, a new feature added in the soon-to-be-standardized C++11.

    0 讨论(0)
  • 2020-12-04 12:14

    It's an rvalue reference. Note that the && token used for Boolean AND and rvalue references, and the & token used for bitwise AND and normal references, are different "words" as far as the language can tell.

    An rvalue reference is (usually) bound to an object which may be left in an indeterminate state after the rvalue reference is finished, presumably because the object will then be destroyed.

    Simply put, binding a variable to an rvalue reference is the usually the last thing you do to it.

    Unlike a regular reference but like a const & reference, an rvalue reference can bind to an rvalue (an expression whose address cannot be directly taken). Like a regular reference but unlike a const & reference, an rvalue reference can be used to modify its object.

    0 讨论(0)
提交回复
热议问题