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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 23, 20262026-05-23T06:16:53+00:00 2026-05-23T06:16:53+00:00

I will start by saying I’ve read this topic: C++ Return reference / stack

  • 0

I will start by saying I’ve read this topic: C++ Return reference / stack memory. But there, the question was with an std::vector<int> as object-type. But I though the behavior of std::string was different. Wasn’t this class especially made for using strings without having to worry about memory-leaks and wrong usage of memory?

So, I already know this is wrong:

std::vector<t> &function()
{
    vector<t> v;
    return v;
}

But is this wrong as well?

std::string &function()
{
    string s = "Faz";
    s += "Far";
    s += "Boo";
    return s;
}

Thanks


Extra question (EDIT): So, am I correct when I say returning (by value) an std::string doesn’t copy the char sequence, only a pointer to the char * array and an size_t for the length?

If this statement is correct, is this the valid way to create a deep copy of a string (to avoid manipulating two strings at once)?

string orig = "Baz";
string copy = string(orig);
  • 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-23T06:16:54+00:00Added an answer on May 23, 2026 at 6:16 am

    You are really close to making those functions work:

    std::string function()
    {
        string s = "Faz";
        s += "Far";
        s += "Boo";
        return s;
    }
    

    Simply make them return a copy instead of a reference and you’re set. This is what you want, a copy of the stack-based string.

    It gets better too, because the return value optimization (RVO) will only create the string once and return it, just like if you had created it on the heap and returned a reference to it, all behind the scenes!

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

Sidebar

Related Questions

Ok, so I will start by saying that I am new to all this
I will start by saying that I don't think what I want can be
Let me start by saying I know about position() but I can't seem to
I'll start of by saying I'm not a developer. Yes this is a c#
I'd like to start this off by saying I'm hardly a pro at jQuery,
I'm going to start this off by saying that I am new to GLSL
Right, ill start from the beginning so it will be alittle easier to read
Let me begin by saying this; I know that similar questions exist, but they
I have a .Net console App which using a scheduled event will start, call
I'm trying to create a bookmarklet that will start off an AJAX call to

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.