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

  • Home
  • SEARCH
  • 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 8931289
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 15, 20262026-06-15T09:04:54+00:00 2026-06-15T09:04:54+00:00

I spotted a snippet of C++ code that goes like this: // constructor that

  • 0

I spotted a snippet of C++ code that goes like this:

// constructor that creates a 2D vector _store[nRow][nCol]
FlexiMatrix::FlexiMatrix(int nRow)
{
    for (int i = 0; i < nRow; i++){
        _store.push_back( vector<int>() );    
        _store[i].push_back( 0 );
    }
}

And _store is declared as follows: vector< vector<int> > _store;

It seems to violate my understanding of local variables and the stack. Shouldn’t the locally created vector’s memory cease to exist the moment we exit this constructor? This is more so given that vector<int>.push_back() requires an alias reference as its input parameter, so the copy constructor is never invoked and what push_back() receives is the actual reference to the local variable?

  • 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-15T09:04:55+00:00Added an answer on June 15, 2026 at 9:04 am

    So the copy constructor is never invoked and what push_back() receives is the actual reference to the local variable?

    No.
    std::vector_push_back() makes a copy of the passed object. The content of the object passed as parameter might be copied/moved(in C++11) to the newly created object.

    There are two forms of push_back() since C++11:

    void push_back (const value_type& val);
    void push_back (value_type&& val);
    

    In your case, vector<int>() creates a temporary(r-value)and hence the second form will be used. This second form will move the content of the temporary to the new object which gets added to your vector. Hence, It will use the move constructor & not the copy constructor.

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

Sidebar

Related Questions

I have spotted something like this in code: void foo(IList<int>^ const & list )
I have spotted a method in some code that does the following : def
Being spotted in context of this question this seemingly inconsistent behavior can be reproduced
Recently I've spotted a very disturbing issue. I've got the following python code: for
I've spotted this question: Does Microsoft SkyDrive have an API? But not having an
Just wondering if anyone else has spotted this: On some user's machines running our
I was browsing a WordPress site, and spotted this line <?php if ( function_exists('dynamic_sidebar')
I spotted this today and just want to verify my understanding of what is
I have just spotted that something is wrong with my django-admin.py command. I checked
I'm playing with CDI producers and spotted in doc that InjectionPoint.getBean() can return null

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.