Does it make sense for a function to return an rvalue reference?Is returning by rvalue reference more efficient?What should main() return in C and C++?Advantages of using forwardClasses, Rvalues and Rvalue ReferencesImage Processing: Algorithm Improvement for 'Coca-Cola Can' RecognitionWhy should I use a pointer rather than the object itself?Does this rvalue signature pattern make sense?Replacing a 32-bit loop counter with 64-bit introduces crazy performance deviationsReturn value or rvalue reference?Rvalue and Lvalue Referencesrvalue reference or forwarding reference?

Are pressure-treated posts that have been submerged for a few days ruined?

Causes of bimodal distributions when bootstrapping a meta-analysis model

What to use instead of cling film to wrap pastry

SafeCracker #3 - We've Been Blocked

Can there be a single technologically advanced nation, in a continent full of non-technologically advanced nations?

Has the Hulk always been able to talk?

What was Bran's plan to kill the Night King?

Are Finitely generated modules over a ring also finitely generated over a subring containing the identity?

Where is the documentation for this ex command?

Identifying characters

Can my company stop me from working overtime?

Decoupling cap routing on a 4 layer PCB

Introducing Gladys, an intrepid globetrotter

Word meaning as function of the composition of its phonemes

How should I tell my manager I'm not paying for an optional after work event I'm not going to?

Adding command shortcuts to bin

Point of the Dothraki's attack in GoT S8E3?

What are the differences between credential stuffing and password spraying?

What is a smasher?

Why does this derived table improve performance?

Why do people keep telling me that I am a bad photographer?

What is the solution to this metapuzzle from a university puzzling column?

Is there an idiom that support the idea that "inflation is bad"?

What exactly are the `size issues' preventing formation of presheaves being a left adjoint to some forgetful functor?



Does it make sense for a function to return an rvalue reference?


Is returning by rvalue reference more efficient?What should main() return in C and C++?Advantages of using forwardClasses, Rvalues and Rvalue ReferencesImage Processing: Algorithm Improvement for 'Coca-Cola Can' RecognitionWhy should I use a pointer rather than the object itself?Does this rvalue signature pattern make sense?Replacing a 32-bit loop counter with 64-bit introduces crazy performance deviationsReturn value or rvalue reference?Rvalue and Lvalue Referencesrvalue reference or forwarding reference?






.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty height:90px;width:728px;box-sizing:border-box;








12















What would be a valid use case for a signature like this?:



T&& foo();


Or is the rvalue ref only intended for use as argument?



How would one use a function like this?



T&& t = foo(); // is this a thing? And when would t get destructed?









share|improve this question



















  • 3





    std::move comes to mind. It certainly returns T&&. Edit : std::optional::value also has an T&& overload. Edit 2 : It also has a const T && overload, though I'll admit I don't understand the meaning.

    – François Andrieux
    7 hours ago







  • 1





    @FrançoisAndrieux the std::get family of functions, too.

    – Brian
    7 hours ago






  • 1





    See this answer.

    – lubgr
    7 hours ago











  • Isn't that a forwarding reference?

    – user2357112
    1 hour ago

















12















What would be a valid use case for a signature like this?:



T&& foo();


Or is the rvalue ref only intended for use as argument?



How would one use a function like this?



T&& t = foo(); // is this a thing? And when would t get destructed?









share|improve this question



















  • 3





    std::move comes to mind. It certainly returns T&&. Edit : std::optional::value also has an T&& overload. Edit 2 : It also has a const T && overload, though I'll admit I don't understand the meaning.

    – François Andrieux
    7 hours ago







  • 1





    @FrançoisAndrieux the std::get family of functions, too.

    – Brian
    7 hours ago






  • 1





    See this answer.

    – lubgr
    7 hours ago











  • Isn't that a forwarding reference?

    – user2357112
    1 hour ago













12












12








12


3






What would be a valid use case for a signature like this?:



T&& foo();


Or is the rvalue ref only intended for use as argument?



How would one use a function like this?



T&& t = foo(); // is this a thing? And when would t get destructed?









share|improve this question
















What would be a valid use case for a signature like this?:



T&& foo();


Or is the rvalue ref only intended for use as argument?



How would one use a function like this?



T&& t = foo(); // is this a thing? And when would t get destructed?






c++






share|improve this question















share|improve this question













share|improve this question




share|improve this question








edited 52 mins ago









Boann

37.7k1291123




37.7k1291123










asked 8 hours ago









Martin B.Martin B.

802313




802313







  • 3





    std::move comes to mind. It certainly returns T&&. Edit : std::optional::value also has an T&& overload. Edit 2 : It also has a const T && overload, though I'll admit I don't understand the meaning.

    – François Andrieux
    7 hours ago







  • 1





    @FrançoisAndrieux the std::get family of functions, too.

    – Brian
    7 hours ago






  • 1





    See this answer.

    – lubgr
    7 hours ago











  • Isn't that a forwarding reference?

    – user2357112
    1 hour ago












  • 3





    std::move comes to mind. It certainly returns T&&. Edit : std::optional::value also has an T&& overload. Edit 2 : It also has a const T && overload, though I'll admit I don't understand the meaning.

    – François Andrieux
    7 hours ago







  • 1





    @FrançoisAndrieux the std::get family of functions, too.

    – Brian
    7 hours ago






  • 1





    See this answer.

    – lubgr
    7 hours ago











  • Isn't that a forwarding reference?

    – user2357112
    1 hour ago







3




3





std::move comes to mind. It certainly returns T&&. Edit : std::optional::value also has an T&& overload. Edit 2 : It also has a const T && overload, though I'll admit I don't understand the meaning.

– François Andrieux
7 hours ago






std::move comes to mind. It certainly returns T&&. Edit : std::optional::value also has an T&& overload. Edit 2 : It also has a const T && overload, though I'll admit I don't understand the meaning.

– François Andrieux
7 hours ago





1




1





@FrançoisAndrieux the std::get family of functions, too.

– Brian
7 hours ago





@FrançoisAndrieux the std::get family of functions, too.

– Brian
7 hours ago




1




1





See this answer.

– lubgr
7 hours ago





See this answer.

– lubgr
7 hours ago













Isn't that a forwarding reference?

– user2357112
1 hour ago





Isn't that a forwarding reference?

– user2357112
1 hour ago












3 Answers
3






active

oldest

votes


















8














For a free function it doesn't make much sense to return a rvalue reference. If it is a non-static local object then you never want to return a reference or pointer to it because it will be destroyed after the function returns. It can possibly make sense to return a rvalue reference to an object that you passed to the function though. It really depends on the use case for if it makes sense or not.



One thing that can greatly benefit from returning an rvalue reference is a member function of a temporary object. Lets say you have



class foo

std::vector<int> bar
public:
foo(int n) : bar(n)
std::vector<int>& get_vec() return bar;
;


If you do



auto vec = foo(10).get_vec();


you have to copy because get_vec returns an lvalue. If you instead use



class foo

std::vector<int> bar
public:
foo(int n) : bar(n)
std::vector<int>& get_vec() & return bar;
std::vector<int>&& get_vec() && return std::move(bar);
;


Then vec would be able to move the vector returned by get_vec and you save yourself an expensive copy operation.






share|improve this answer























  • @FrançoisAndrieux That's covered by my It can possibly make sense to return a rvalue reference to an object that you passed to the function though. It really depends on the use case for if it makes sense or not. catch all. I know there are cases but I really didn't want to try and list them all.

    – NathanOliver
    7 hours ago











  • Is there a reason to prefer returning by rvalue-ref compared to returning by value here?

    – super
    7 hours ago











  • @super I take it your talking about the get_vec case? If you return by value you incur 2 move operations. Passing by rvalue reference you only have 1 move.

    – NathanOliver
    7 hours ago






  • 1





    @NathanOliver Well, you can call it on any rvalue (e.g. std::move(a).get_vec()). My point is that you're potentially returning a reference to an object that's about to be destroyed. It's the same problem as returning a reference to a local function variable.

    – Cruz Jean
    7 hours ago







  • 1





    std::vector<int> get_vec() && return std::move(bar); in this case ends up being better 999/1000. Can you come up with a better example?

    – Yakk - Adam Nevraumont
    7 hours ago



















2















T&& t = foo(); // is this a thing? And when would t get destructed?



An rvalue reference is really similar to a lvalue reference. Think about your example like it was normal references:



T& foo();

T& t = foo(); // when is t destroyed?


The answer is that t is still valid to use as long as the object is refers to lives.



The same answer still applies to you rvalue reference example.




But... does it make sense to return an rvalue reference?



Sometimes, yes. But very rarely.



consider this:



std::vector<int> v = ...;

// type is std::tuple<std::vector<int>&&>
auto parameters = std::forward_as_tuple(std::move(v));

// fwd is a rvalue reference since std::get returns one.
// fwd is valid as long as v is.
decltype(auto) fwd = std::get<0>(parameters);

// useful for calling function in generic context without copying
consume(std::get<0>(parameters));


So yes there are example. Here, another interesting one:



struct wrapper 

auto operator*() & -> Heavy&
return heavy;


auto operator*() && -> Heavy&&
return std::move(heavy);


private:
Heavy instance;
;

// by value
void use_heavy(Heavy);

// since the wrapper is a temporary, the
// Heavy contained will be a temporary too.
use_heavy(*make_wrapper());





share|improve this answer

























  • In the last example, if the wrapper instance you use this on is a temporary, operator*() returns a reference to instance, which is likewise a temporary. So after the function returns you have a reference to an object whose lifetime has ended (undefined behavior).

    – Cruz Jean
    6 hours ago











  • @CruzJean corrected

    – Guillaume Racicot
    6 hours ago


















0














I think a use case would be to explicitly give permission to "empty" some non-local variable. Perhaps something like this:



class Logger

public:
void log(const char* msg)
logs.append(msg);

std::vector<std::string>&& dumpLogs()
return std::move(logs);

private:
std::vector<std::string> logs;
;


But I admit I made this up now, I never actually used it and it also can be done like this:



std::vector<std::string> dumpLogs()
auto dumped_logs = logs;
return dumped_logs;






share|improve this answer























  • That's what the other answers have come up with as well, but in the case where this is called on a temporary object, by the time the function returns you have an (rvalue) reference to an object whose lifetime has ended (undefined behavior).

    – Cruz Jean
    6 hours ago












  • @CruzJean Well, my answer was here first and no one downvoted/complained yet so I will keep it here. I am not returning any reference to a temporary anywhere.

    – Quimby
    6 hours ago











  • return std::move(logs); where the return value is a reference type and *this is a temporary (due to being an rvalue method) makes this->logs a temporary as well. That's the reference to a temporary I mean.

    – Cruz Jean
    5 hours ago











Your Answer






StackExchange.ifUsing("editor", function ()
StackExchange.using("externalEditor", function ()
StackExchange.using("snippets", function ()
StackExchange.snippets.init();
);
);
, "code-snippets");

StackExchange.ready(function()
var channelOptions =
tags: "".split(" "),
id: "1"
;
initTagRenderer("".split(" "), "".split(" "), channelOptions);

StackExchange.using("externalEditor", function()
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled)
StackExchange.using("snippets", function()
createEditor();
);

else
createEditor();

);

function createEditor()
StackExchange.prepareEditor(
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader:
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
,
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
);



);













draft saved

draft discarded


















StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f55958970%2fdoes-it-make-sense-for-a-function-to-return-an-rvalue-reference%23new-answer', 'question_page');

);

Post as a guest















Required, but never shown

























3 Answers
3






active

oldest

votes








3 Answers
3






active

oldest

votes









active

oldest

votes






active

oldest

votes









8














For a free function it doesn't make much sense to return a rvalue reference. If it is a non-static local object then you never want to return a reference or pointer to it because it will be destroyed after the function returns. It can possibly make sense to return a rvalue reference to an object that you passed to the function though. It really depends on the use case for if it makes sense or not.



One thing that can greatly benefit from returning an rvalue reference is a member function of a temporary object. Lets say you have



class foo

std::vector<int> bar
public:
foo(int n) : bar(n)
std::vector<int>& get_vec() return bar;
;


If you do



auto vec = foo(10).get_vec();


you have to copy because get_vec returns an lvalue. If you instead use



class foo

std::vector<int> bar
public:
foo(int n) : bar(n)
std::vector<int>& get_vec() & return bar;
std::vector<int>&& get_vec() && return std::move(bar);
;


Then vec would be able to move the vector returned by get_vec and you save yourself an expensive copy operation.






share|improve this answer























  • @FrançoisAndrieux That's covered by my It can possibly make sense to return a rvalue reference to an object that you passed to the function though. It really depends on the use case for if it makes sense or not. catch all. I know there are cases but I really didn't want to try and list them all.

    – NathanOliver
    7 hours ago











  • Is there a reason to prefer returning by rvalue-ref compared to returning by value here?

    – super
    7 hours ago











  • @super I take it your talking about the get_vec case? If you return by value you incur 2 move operations. Passing by rvalue reference you only have 1 move.

    – NathanOliver
    7 hours ago






  • 1





    @NathanOliver Well, you can call it on any rvalue (e.g. std::move(a).get_vec()). My point is that you're potentially returning a reference to an object that's about to be destroyed. It's the same problem as returning a reference to a local function variable.

    – Cruz Jean
    7 hours ago







  • 1





    std::vector<int> get_vec() && return std::move(bar); in this case ends up being better 999/1000. Can you come up with a better example?

    – Yakk - Adam Nevraumont
    7 hours ago
















8














For a free function it doesn't make much sense to return a rvalue reference. If it is a non-static local object then you never want to return a reference or pointer to it because it will be destroyed after the function returns. It can possibly make sense to return a rvalue reference to an object that you passed to the function though. It really depends on the use case for if it makes sense or not.



One thing that can greatly benefit from returning an rvalue reference is a member function of a temporary object. Lets say you have



class foo

std::vector<int> bar
public:
foo(int n) : bar(n)
std::vector<int>& get_vec() return bar;
;


If you do



auto vec = foo(10).get_vec();


you have to copy because get_vec returns an lvalue. If you instead use



class foo

std::vector<int> bar
public:
foo(int n) : bar(n)
std::vector<int>& get_vec() & return bar;
std::vector<int>&& get_vec() && return std::move(bar);
;


Then vec would be able to move the vector returned by get_vec and you save yourself an expensive copy operation.






share|improve this answer























  • @FrançoisAndrieux That's covered by my It can possibly make sense to return a rvalue reference to an object that you passed to the function though. It really depends on the use case for if it makes sense or not. catch all. I know there are cases but I really didn't want to try and list them all.

    – NathanOliver
    7 hours ago











  • Is there a reason to prefer returning by rvalue-ref compared to returning by value here?

    – super
    7 hours ago











  • @super I take it your talking about the get_vec case? If you return by value you incur 2 move operations. Passing by rvalue reference you only have 1 move.

    – NathanOliver
    7 hours ago






  • 1





    @NathanOliver Well, you can call it on any rvalue (e.g. std::move(a).get_vec()). My point is that you're potentially returning a reference to an object that's about to be destroyed. It's the same problem as returning a reference to a local function variable.

    – Cruz Jean
    7 hours ago







  • 1





    std::vector<int> get_vec() && return std::move(bar); in this case ends up being better 999/1000. Can you come up with a better example?

    – Yakk - Adam Nevraumont
    7 hours ago














8












8








8







For a free function it doesn't make much sense to return a rvalue reference. If it is a non-static local object then you never want to return a reference or pointer to it because it will be destroyed after the function returns. It can possibly make sense to return a rvalue reference to an object that you passed to the function though. It really depends on the use case for if it makes sense or not.



One thing that can greatly benefit from returning an rvalue reference is a member function of a temporary object. Lets say you have



class foo

std::vector<int> bar
public:
foo(int n) : bar(n)
std::vector<int>& get_vec() return bar;
;


If you do



auto vec = foo(10).get_vec();


you have to copy because get_vec returns an lvalue. If you instead use



class foo

std::vector<int> bar
public:
foo(int n) : bar(n)
std::vector<int>& get_vec() & return bar;
std::vector<int>&& get_vec() && return std::move(bar);
;


Then vec would be able to move the vector returned by get_vec and you save yourself an expensive copy operation.






share|improve this answer













For a free function it doesn't make much sense to return a rvalue reference. If it is a non-static local object then you never want to return a reference or pointer to it because it will be destroyed after the function returns. It can possibly make sense to return a rvalue reference to an object that you passed to the function though. It really depends on the use case for if it makes sense or not.



One thing that can greatly benefit from returning an rvalue reference is a member function of a temporary object. Lets say you have



class foo

std::vector<int> bar
public:
foo(int n) : bar(n)
std::vector<int>& get_vec() return bar;
;


If you do



auto vec = foo(10).get_vec();


you have to copy because get_vec returns an lvalue. If you instead use



class foo

std::vector<int> bar
public:
foo(int n) : bar(n)
std::vector<int>& get_vec() & return bar;
std::vector<int>&& get_vec() && return std::move(bar);
;


Then vec would be able to move the vector returned by get_vec and you save yourself an expensive copy operation.







share|improve this answer












share|improve this answer



share|improve this answer










answered 7 hours ago









NathanOliverNathanOliver

101k16139221




101k16139221












  • @FrançoisAndrieux That's covered by my It can possibly make sense to return a rvalue reference to an object that you passed to the function though. It really depends on the use case for if it makes sense or not. catch all. I know there are cases but I really didn't want to try and list them all.

    – NathanOliver
    7 hours ago











  • Is there a reason to prefer returning by rvalue-ref compared to returning by value here?

    – super
    7 hours ago











  • @super I take it your talking about the get_vec case? If you return by value you incur 2 move operations. Passing by rvalue reference you only have 1 move.

    – NathanOliver
    7 hours ago






  • 1





    @NathanOliver Well, you can call it on any rvalue (e.g. std::move(a).get_vec()). My point is that you're potentially returning a reference to an object that's about to be destroyed. It's the same problem as returning a reference to a local function variable.

    – Cruz Jean
    7 hours ago







  • 1





    std::vector<int> get_vec() && return std::move(bar); in this case ends up being better 999/1000. Can you come up with a better example?

    – Yakk - Adam Nevraumont
    7 hours ago


















  • @FrançoisAndrieux That's covered by my It can possibly make sense to return a rvalue reference to an object that you passed to the function though. It really depends on the use case for if it makes sense or not. catch all. I know there are cases but I really didn't want to try and list them all.

    – NathanOliver
    7 hours ago











  • Is there a reason to prefer returning by rvalue-ref compared to returning by value here?

    – super
    7 hours ago











  • @super I take it your talking about the get_vec case? If you return by value you incur 2 move operations. Passing by rvalue reference you only have 1 move.

    – NathanOliver
    7 hours ago






  • 1





    @NathanOliver Well, you can call it on any rvalue (e.g. std::move(a).get_vec()). My point is that you're potentially returning a reference to an object that's about to be destroyed. It's the same problem as returning a reference to a local function variable.

    – Cruz Jean
    7 hours ago







  • 1





    std::vector<int> get_vec() && return std::move(bar); in this case ends up being better 999/1000. Can you come up with a better example?

    – Yakk - Adam Nevraumont
    7 hours ago

















@FrançoisAndrieux That's covered by my It can possibly make sense to return a rvalue reference to an object that you passed to the function though. It really depends on the use case for if it makes sense or not. catch all. I know there are cases but I really didn't want to try and list them all.

– NathanOliver
7 hours ago





@FrançoisAndrieux That's covered by my It can possibly make sense to return a rvalue reference to an object that you passed to the function though. It really depends on the use case for if it makes sense or not. catch all. I know there are cases but I really didn't want to try and list them all.

– NathanOliver
7 hours ago













Is there a reason to prefer returning by rvalue-ref compared to returning by value here?

– super
7 hours ago





Is there a reason to prefer returning by rvalue-ref compared to returning by value here?

– super
7 hours ago













@super I take it your talking about the get_vec case? If you return by value you incur 2 move operations. Passing by rvalue reference you only have 1 move.

– NathanOliver
7 hours ago





@super I take it your talking about the get_vec case? If you return by value you incur 2 move operations. Passing by rvalue reference you only have 1 move.

– NathanOliver
7 hours ago




1




1





@NathanOliver Well, you can call it on any rvalue (e.g. std::move(a).get_vec()). My point is that you're potentially returning a reference to an object that's about to be destroyed. It's the same problem as returning a reference to a local function variable.

– Cruz Jean
7 hours ago






@NathanOliver Well, you can call it on any rvalue (e.g. std::move(a).get_vec()). My point is that you're potentially returning a reference to an object that's about to be destroyed. It's the same problem as returning a reference to a local function variable.

– Cruz Jean
7 hours ago





1




1





std::vector<int> get_vec() && return std::move(bar); in this case ends up being better 999/1000. Can you come up with a better example?

– Yakk - Adam Nevraumont
7 hours ago






std::vector<int> get_vec() && return std::move(bar); in this case ends up being better 999/1000. Can you come up with a better example?

– Yakk - Adam Nevraumont
7 hours ago














2















T&& t = foo(); // is this a thing? And when would t get destructed?



An rvalue reference is really similar to a lvalue reference. Think about your example like it was normal references:



T& foo();

T& t = foo(); // when is t destroyed?


The answer is that t is still valid to use as long as the object is refers to lives.



The same answer still applies to you rvalue reference example.




But... does it make sense to return an rvalue reference?



Sometimes, yes. But very rarely.



consider this:



std::vector<int> v = ...;

// type is std::tuple<std::vector<int>&&>
auto parameters = std::forward_as_tuple(std::move(v));

// fwd is a rvalue reference since std::get returns one.
// fwd is valid as long as v is.
decltype(auto) fwd = std::get<0>(parameters);

// useful for calling function in generic context without copying
consume(std::get<0>(parameters));


So yes there are example. Here, another interesting one:



struct wrapper 

auto operator*() & -> Heavy&
return heavy;


auto operator*() && -> Heavy&&
return std::move(heavy);


private:
Heavy instance;
;

// by value
void use_heavy(Heavy);

// since the wrapper is a temporary, the
// Heavy contained will be a temporary too.
use_heavy(*make_wrapper());





share|improve this answer

























  • In the last example, if the wrapper instance you use this on is a temporary, operator*() returns a reference to instance, which is likewise a temporary. So after the function returns you have a reference to an object whose lifetime has ended (undefined behavior).

    – Cruz Jean
    6 hours ago











  • @CruzJean corrected

    – Guillaume Racicot
    6 hours ago















2















T&& t = foo(); // is this a thing? And when would t get destructed?



An rvalue reference is really similar to a lvalue reference. Think about your example like it was normal references:



T& foo();

T& t = foo(); // when is t destroyed?


The answer is that t is still valid to use as long as the object is refers to lives.



The same answer still applies to you rvalue reference example.




But... does it make sense to return an rvalue reference?



Sometimes, yes. But very rarely.



consider this:



std::vector<int> v = ...;

// type is std::tuple<std::vector<int>&&>
auto parameters = std::forward_as_tuple(std::move(v));

// fwd is a rvalue reference since std::get returns one.
// fwd is valid as long as v is.
decltype(auto) fwd = std::get<0>(parameters);

// useful for calling function in generic context without copying
consume(std::get<0>(parameters));


So yes there are example. Here, another interesting one:



struct wrapper 

auto operator*() & -> Heavy&
return heavy;


auto operator*() && -> Heavy&&
return std::move(heavy);


private:
Heavy instance;
;

// by value
void use_heavy(Heavy);

// since the wrapper is a temporary, the
// Heavy contained will be a temporary too.
use_heavy(*make_wrapper());





share|improve this answer

























  • In the last example, if the wrapper instance you use this on is a temporary, operator*() returns a reference to instance, which is likewise a temporary. So after the function returns you have a reference to an object whose lifetime has ended (undefined behavior).

    – Cruz Jean
    6 hours ago











  • @CruzJean corrected

    – Guillaume Racicot
    6 hours ago













2












2








2








T&& t = foo(); // is this a thing? And when would t get destructed?



An rvalue reference is really similar to a lvalue reference. Think about your example like it was normal references:



T& foo();

T& t = foo(); // when is t destroyed?


The answer is that t is still valid to use as long as the object is refers to lives.



The same answer still applies to you rvalue reference example.




But... does it make sense to return an rvalue reference?



Sometimes, yes. But very rarely.



consider this:



std::vector<int> v = ...;

// type is std::tuple<std::vector<int>&&>
auto parameters = std::forward_as_tuple(std::move(v));

// fwd is a rvalue reference since std::get returns one.
// fwd is valid as long as v is.
decltype(auto) fwd = std::get<0>(parameters);

// useful for calling function in generic context without copying
consume(std::get<0>(parameters));


So yes there are example. Here, another interesting one:



struct wrapper 

auto operator*() & -> Heavy&
return heavy;


auto operator*() && -> Heavy&&
return std::move(heavy);


private:
Heavy instance;
;

// by value
void use_heavy(Heavy);

// since the wrapper is a temporary, the
// Heavy contained will be a temporary too.
use_heavy(*make_wrapper());





share|improve this answer
















T&& t = foo(); // is this a thing? And when would t get destructed?



An rvalue reference is really similar to a lvalue reference. Think about your example like it was normal references:



T& foo();

T& t = foo(); // when is t destroyed?


The answer is that t is still valid to use as long as the object is refers to lives.



The same answer still applies to you rvalue reference example.




But... does it make sense to return an rvalue reference?



Sometimes, yes. But very rarely.



consider this:



std::vector<int> v = ...;

// type is std::tuple<std::vector<int>&&>
auto parameters = std::forward_as_tuple(std::move(v));

// fwd is a rvalue reference since std::get returns one.
// fwd is valid as long as v is.
decltype(auto) fwd = std::get<0>(parameters);

// useful for calling function in generic context without copying
consume(std::get<0>(parameters));


So yes there are example. Here, another interesting one:



struct wrapper 

auto operator*() & -> Heavy&
return heavy;


auto operator*() && -> Heavy&&
return std::move(heavy);


private:
Heavy instance;
;

// by value
void use_heavy(Heavy);

// since the wrapper is a temporary, the
// Heavy contained will be a temporary too.
use_heavy(*make_wrapper());






share|improve this answer














share|improve this answer



share|improve this answer








edited 6 hours ago

























answered 7 hours ago









Guillaume RacicotGuillaume Racicot

16.8k53874




16.8k53874












  • In the last example, if the wrapper instance you use this on is a temporary, operator*() returns a reference to instance, which is likewise a temporary. So after the function returns you have a reference to an object whose lifetime has ended (undefined behavior).

    – Cruz Jean
    6 hours ago











  • @CruzJean corrected

    – Guillaume Racicot
    6 hours ago

















  • In the last example, if the wrapper instance you use this on is a temporary, operator*() returns a reference to instance, which is likewise a temporary. So after the function returns you have a reference to an object whose lifetime has ended (undefined behavior).

    – Cruz Jean
    6 hours ago











  • @CruzJean corrected

    – Guillaume Racicot
    6 hours ago
















In the last example, if the wrapper instance you use this on is a temporary, operator*() returns a reference to instance, which is likewise a temporary. So after the function returns you have a reference to an object whose lifetime has ended (undefined behavior).

– Cruz Jean
6 hours ago





In the last example, if the wrapper instance you use this on is a temporary, operator*() returns a reference to instance, which is likewise a temporary. So after the function returns you have a reference to an object whose lifetime has ended (undefined behavior).

– Cruz Jean
6 hours ago













@CruzJean corrected

– Guillaume Racicot
6 hours ago





@CruzJean corrected

– Guillaume Racicot
6 hours ago











0














I think a use case would be to explicitly give permission to "empty" some non-local variable. Perhaps something like this:



class Logger

public:
void log(const char* msg)
logs.append(msg);

std::vector<std::string>&& dumpLogs()
return std::move(logs);

private:
std::vector<std::string> logs;
;


But I admit I made this up now, I never actually used it and it also can be done like this:



std::vector<std::string> dumpLogs()
auto dumped_logs = logs;
return dumped_logs;






share|improve this answer























  • That's what the other answers have come up with as well, but in the case where this is called on a temporary object, by the time the function returns you have an (rvalue) reference to an object whose lifetime has ended (undefined behavior).

    – Cruz Jean
    6 hours ago












  • @CruzJean Well, my answer was here first and no one downvoted/complained yet so I will keep it here. I am not returning any reference to a temporary anywhere.

    – Quimby
    6 hours ago











  • return std::move(logs); where the return value is a reference type and *this is a temporary (due to being an rvalue method) makes this->logs a temporary as well. That's the reference to a temporary I mean.

    – Cruz Jean
    5 hours ago















0














I think a use case would be to explicitly give permission to "empty" some non-local variable. Perhaps something like this:



class Logger

public:
void log(const char* msg)
logs.append(msg);

std::vector<std::string>&& dumpLogs()
return std::move(logs);

private:
std::vector<std::string> logs;
;


But I admit I made this up now, I never actually used it and it also can be done like this:



std::vector<std::string> dumpLogs()
auto dumped_logs = logs;
return dumped_logs;






share|improve this answer























  • That's what the other answers have come up with as well, but in the case where this is called on a temporary object, by the time the function returns you have an (rvalue) reference to an object whose lifetime has ended (undefined behavior).

    – Cruz Jean
    6 hours ago












  • @CruzJean Well, my answer was here first and no one downvoted/complained yet so I will keep it here. I am not returning any reference to a temporary anywhere.

    – Quimby
    6 hours ago











  • return std::move(logs); where the return value is a reference type and *this is a temporary (due to being an rvalue method) makes this->logs a temporary as well. That's the reference to a temporary I mean.

    – Cruz Jean
    5 hours ago













0












0








0







I think a use case would be to explicitly give permission to "empty" some non-local variable. Perhaps something like this:



class Logger

public:
void log(const char* msg)
logs.append(msg);

std::vector<std::string>&& dumpLogs()
return std::move(logs);

private:
std::vector<std::string> logs;
;


But I admit I made this up now, I never actually used it and it also can be done like this:



std::vector<std::string> dumpLogs()
auto dumped_logs = logs;
return dumped_logs;






share|improve this answer













I think a use case would be to explicitly give permission to "empty" some non-local variable. Perhaps something like this:



class Logger

public:
void log(const char* msg)
logs.append(msg);

std::vector<std::string>&& dumpLogs()
return std::move(logs);

private:
std::vector<std::string> logs;
;


But I admit I made this up now, I never actually used it and it also can be done like this:



std::vector<std::string> dumpLogs()
auto dumped_logs = logs;
return dumped_logs;







share|improve this answer












share|improve this answer



share|improve this answer










answered 7 hours ago









QuimbyQuimby

1,272514




1,272514












  • That's what the other answers have come up with as well, but in the case where this is called on a temporary object, by the time the function returns you have an (rvalue) reference to an object whose lifetime has ended (undefined behavior).

    – Cruz Jean
    6 hours ago












  • @CruzJean Well, my answer was here first and no one downvoted/complained yet so I will keep it here. I am not returning any reference to a temporary anywhere.

    – Quimby
    6 hours ago











  • return std::move(logs); where the return value is a reference type and *this is a temporary (due to being an rvalue method) makes this->logs a temporary as well. That's the reference to a temporary I mean.

    – Cruz Jean
    5 hours ago

















  • That's what the other answers have come up with as well, but in the case where this is called on a temporary object, by the time the function returns you have an (rvalue) reference to an object whose lifetime has ended (undefined behavior).

    – Cruz Jean
    6 hours ago












  • @CruzJean Well, my answer was here first and no one downvoted/complained yet so I will keep it here. I am not returning any reference to a temporary anywhere.

    – Quimby
    6 hours ago











  • return std::move(logs); where the return value is a reference type and *this is a temporary (due to being an rvalue method) makes this->logs a temporary as well. That's the reference to a temporary I mean.

    – Cruz Jean
    5 hours ago
















That's what the other answers have come up with as well, but in the case where this is called on a temporary object, by the time the function returns you have an (rvalue) reference to an object whose lifetime has ended (undefined behavior).

– Cruz Jean
6 hours ago






That's what the other answers have come up with as well, but in the case where this is called on a temporary object, by the time the function returns you have an (rvalue) reference to an object whose lifetime has ended (undefined behavior).

– Cruz Jean
6 hours ago














@CruzJean Well, my answer was here first and no one downvoted/complained yet so I will keep it here. I am not returning any reference to a temporary anywhere.

– Quimby
6 hours ago





@CruzJean Well, my answer was here first and no one downvoted/complained yet so I will keep it here. I am not returning any reference to a temporary anywhere.

– Quimby
6 hours ago













return std::move(logs); where the return value is a reference type and *this is a temporary (due to being an rvalue method) makes this->logs a temporary as well. That's the reference to a temporary I mean.

– Cruz Jean
5 hours ago





return std::move(logs); where the return value is a reference type and *this is a temporary (due to being an rvalue method) makes this->logs a temporary as well. That's the reference to a temporary I mean.

– Cruz Jean
5 hours ago

















draft saved

draft discarded
















































Thanks for contributing an answer to Stack Overflow!


  • Please be sure to answer the question. Provide details and share your research!

But avoid


  • Asking for help, clarification, or responding to other answers.

  • Making statements based on opinion; back them up with references or personal experience.

To learn more, see our tips on writing great answers.




draft saved


draft discarded














StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f55958970%2fdoes-it-make-sense-for-a-function-to-return-an-rvalue-reference%23new-answer', 'question_page');

);

Post as a guest















Required, but never shown





















































Required, but never shown














Required, but never shown












Required, but never shown







Required, but never shown

































Required, but never shown














Required, but never shown












Required, but never shown







Required, but never shown







Popular posts from this blog

Invision Community Contents History See also References External links Navigation menuProprietaryinvisioncommunity.comIPS Community ForumsIPS Community Forumsthis blog entry"License Changes, IP.Board 3.4, and the Future""Interview -- Matt Mecham of Ibforums""CEO Invision Power Board, Matt Mecham Is a Liar, Thief!"IPB License Explanation 1.3, 1.3.1, 2.0, and 2.1ArchivedSecurity Fixes, Updates And Enhancements For IPB 1.3.1Archived"New Demo Accounts - Invision Power Services"the original"New Default Skin"the original"Invision Power Board 3.0.0 and Applications Released"the original"Archived copy"the original"Perpetual licenses being done away with""Release Notes - Invision Power Services""Introducing: IPS Community Suite 4!"Invision Community Release Notes

Canceling a color specificationRandomly assigning color to Graphics3D objects?Default color for Filling in Mathematica 9Coloring specific elements of sets with a prime modified order in an array plotHow to pick a color differing significantly from the colors already in a given color list?Detection of the text colorColor numbers based on their valueCan color schemes for use with ColorData include opacity specification?My dynamic color schemes

Tom Holland Mục lục Đầu đời và giáo dục | Sự nghiệp | Cuộc sống cá nhân | Phim tham gia | Giải thưởng và đề cử | Chú thích | Liên kết ngoài | Trình đơn chuyển hướngProfile“Person Details for Thomas Stanley Holland, "England and Wales Birth Registration Index, 1837-2008" — FamilySearch.org”"Meet Tom Holland... the 16-year-old star of The Impossible""Schoolboy actor Tom Holland finds himself in Oscar contention for role in tsunami drama"“Naomi Watts on the Prince William and Harry's reaction to her film about the late Princess Diana”lưu trữ"Holland and Pflueger Are West End's Two New 'Billy Elliots'""I'm so envious of my son, the movie star! British writer Dominic Holland's spent 20 years trying to crack Hollywood - but he's been beaten to it by a very unlikely rival"“Richard and Margaret Povey of Jersey, Channel Islands, UK: Information about Thomas Stanley Holland”"Tom Holland to play Billy Elliot""New Billy Elliot leaving the garage"Billy Elliot the Musical - Tom Holland - Billy"A Tale of four Billys: Tom Holland""The Feel Good Factor""Thames Christian College schoolboys join Myleene Klass for The Feelgood Factor""Government launches £600,000 arts bursaries pilot""BILLY's Chapman, Holland, Gardner & Jackson-Keen Visit Prime Minister""Elton John 'blown away' by Billy Elliot fifth birthday" (video with John's interview and fragments of Holland's performance)"First News interviews Arrietty's Tom Holland"“33rd Critics' Circle Film Awards winners”“National Board of Review Current Awards”Bản gốc"Ron Howard Whaling Tale 'In The Heart Of The Sea' Casts Tom Holland"“'Spider-Man' Finds Tom Holland to Star as New Web-Slinger”lưu trữ“Captain America: Civil War (2016)”“Film Review: ‘Captain America: Civil War’”lưu trữ“‘Captain America: Civil War’ review: Choose your own avenger”lưu trữ“The Lost City of Z reviews”“Sony Pictures and Marvel Studios Find Their 'Spider-Man' Star and Director”“‘Mary Magdalene’, ‘Current War’ & ‘Wind River’ Get 2017 Release Dates From Weinstein”“Lionsgate Unleashing Daisy Ridley & Tom Holland Starrer ‘Chaos Walking’ In Cannes”“PTA's 'Master' Leads Chicago Film Critics Nominations, UPDATED: Houston and Indiana Critics Nominations”“Nominaciones Goya 2013 Telecinco Cinema – ENG”“Jameson Empire Film Awards: Martin Freeman wins best actor for performance in The Hobbit”“34th Annual Young Artist Awards”Bản gốc“Teen Choice Awards 2016—Captain America: Civil War Leads Second Wave of Nominations”“BAFTA Film Award Nominations: ‘La La Land’ Leads Race”“Saturn Awards Nominations 2017: 'Rogue One,' 'Walking Dead' Lead”Tom HollandTom HollandTom HollandTom Hollandmedia.gettyimages.comWorldCat Identities300279794no20130442900000 0004 0355 42791085670554170004732cb16706349t(data)XX5557367