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 8285905
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 8, 20262026-06-08T11:34:49+00:00 2026-06-08T11:34:49+00:00

Is there any performance boost in storing the return value of a function by

  • 0

Is there any performance boost in storing the return value of a function by reference? I mean is the following code preferred because it prevents copying the return value of function into the variable?

string Foo()
{
    string someString = "some string";
    return someString;
}

const string &str = Foo();

Edit: Although in the above example Foo() is returning a string, my question concerns returning other type of objects as well.

  • 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-06-08T11:34:50+00:00Added an answer on June 8, 2026 at 11:34 am

    Your code as it stands contains two copies in Foo:

    (1) from a temporary object of type string constructed using the const char* constructor, to someString.

    (2) from the variable someString to the temporary object that is the return value of Foo.

    You are writing const string &str = Foo(); instead of const string str = Foo(); with the intention of preventing a third copy:

    (3) from the temporary object that is the return value of Foo, to str.

    All three copies are permitted by the standard to be elided, so the question basically is whether your compiler needs help with 3.

    As a rule of thumb I would say no — if your compiler is smart enough to elide copies 1 and 2, then likely it is smart enough to elide 3. If it is not smart enough to elide any of them, and this costs you performance, then you need to work on function Foo as well as on code that calls it. But this situation won’t come up — as long as you remember to turn on optimization, any real C++ compiler can do copy elision.

    There could conceivably be special cases where you need to write your code carefully to help the compiler out where it fails to elide some copy that it is permitted to elide. You need to find those cases as they occur, no general coding guideline can (accurately) tell you that you need to worry about (3) but not (1) and (2).

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

Sidebar

Related Questions

I was wondering if anyone knew if there was a performance boost of any
Does appended LIMIT 1 after query have any performance boost? ...if there could be
Is there any performance / memory hit differential among the three following styles? Exhibit
Is there any performance benefits to using Command objects to validate constraints over using
Is there any performance benefit/technical differences between calling EF SaveChanges() in a foreach loop
Is there any performance difference in my application if I change the number of
Is there any performance different between hosting your asp.net in mono on linux and
Are there any performance/other implications in having an object relates to itself? (self join)
Is there any performance differences between string.Format and String.Format ? As far as i
Are there any performance issues with registering a number of routes with the routing

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.