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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 2, 20262026-06-02T09:18:10+00:00 2026-06-02T09:18:10+00:00

I am facing an issue in c++ STL container map. class c1 { map<int

  • 0

I am facing an issue in c++ STL container map.

class c1 {

map<int , vector<entity>>  mapobject   //where entity is a structure

c1{

    entity er;
    er.entityId = 1;
    er.nameId = 1; 

    std::vector<entity> record;
    record.push_back(er);

    mapobject.insert(std::pair<int,std::vector<entity>>(1,record));

}
}

The problem which i am facing from the above code is , outside the constructor , all the strcuture fields contains garbage values. Will the class level variable – map not deep copy the contents ?

Please help me in this

–kumar

  • 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-02T09:18:14+00:00Added an answer on June 2, 2026 at 9:18 am

    You need to implement a copy-constructor for entity:

    class entity
    {
    public:
        entity(const entity& other)
        {}
    };
    

    C++ does not deep-copy objects by default. There are also some syntax errors in your code:

    class c1 {
    
    map<int , vector<entity>>  mapobject;   //missing semicolon
    
    c1 () { //missing parameter list
    
        entity er;
        er.entityId = 1;
        er.nameId = 1; 
    
        std::vector<entity> record;
        record.push_back(er);
    
        mapobject.insert(std::pair<int,std::vector<entity>>(1,record));
    
    }
    }; //missing semicolon
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Im facing an issue with The following: public class Person { private long id;
I am facing an issue regarding EF code first version while mapping one entity
I am facing an issue, where I need to retrieve an entity two times
I'm facing an issue I don't really understand with Entity Manager (C#). I'm kinda
I am facing issue while i load a form on ajax request. i followed
I have been facing issue with sphinx result set for string attribute. Below is
I got below JSON string, i facing issue parsing because it contains non english
I am facing an issue with a button onclick. I checked with previously asked
I am facing an issue where the Twitter Bootstrapp CSS opens my animation with
I am facing this issue on Android 2.3.5 (and possibly earlier Android versions) When

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.