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 if anyone has any favourite SQL references they to use when creating
I was wondering how to use cin so that if the user does not
I'm wondering about the practical use of #undef in C. I'm working through K&R,
I'm wondering how one could use template databinding to accomplish what the following code
I'm wondering how to use a VideoDisplay object (defined in MXML) to display video
I am wondering how to use NUnit correctly. First, I created a separate test
I was wondering why we use the terms push and pop for adding/removing items
I'm wondering what strategies people use for reduced sign on with legacy applications and
I am wondering if it is possible to use Code Access Security, and a
I was wondering what you would use to scrub a database of all test

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.