Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 3788746
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 19, 20262026-05-19T12:02:52+00:00 2026-05-19T12:02:52+00:00

I was wondering what use an rvalue reference member has class A { //

  • 0

I was wondering what use an rvalue reference member has

class A {
  // ...
  // Is this one useful?
  Foo &&f;
};

Does it have any benefits or drawbacks compared to an lvalue reference member? What is a prime usecase of it?

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-19T12:02:53+00:00Added an answer on May 19, 2026 at 12:02 pm

    I’ve seen one very motivating use case for rvalue reference data members, and it is in the C++0x draft:

    template<class... Types>
    tuple<Types&&...>
    forward_as_tuple(Types&&... t) noexcept;
    

    Effects: Constructs a tuple of
    references to the arguments in t
    suitable for forwarding as arguments
    to a function. Because the result may
    contain references to temporary
    variables, a program shall ensure that
    the return value of this function does
    not outlive any of its arguments.
    (e.g., the program should typically
    not store the result in a named
    variable).

    Returns: tuple<Types&&...>(std::forward<Types>(t)...)

    The tuple has rvalue reference data members when rvalues are used as arguments to forward_as_tuple, and otherwise has lvalue reference data members.

    I’ve found forward_as_tuple subsequently helpful when needing to catch variadic arguments, perfectly forward them packed as a tuple, and re-expand them later at the point of forwarding to a functor. I used forward_as_tuple in this style when implementing an enhanced version of tuple_cat proposed in LWG 1385:

    http://www.open-std.org/jtc1/sc22/wg21/docs/lwg-active.html#1385

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Just wondering when you use multiple classes on the one element such as class=foo
I am wondering when to use static methods? Say if I have a class
I was wondering how to use cin so that if the user does not
I was wondering how to use the self:: and $this combined in a static
I have a situation similar to this one struct Child { u16 x, y;
I am wondering how to use apply on a multidimensional array. I have something
We are wondering how to use HttpWebRequest and HttpWebResponse .net framework Class in ATL
I am wondering how to use one hotkey mapping two command in vim. for
i was wondering when we use the init method in a project? i have
I was just wondering how to use the function :not in my situation. This

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.