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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 26, 20262026-05-26T23:23:09+00:00 2026-05-26T23:23:09+00:00

I have an std:map defined as follows: std:map<std::string country, std::vector<SomeClass> events>; Holds some events

  • 0

I have an std:map defined as follows:

std:map<std::string country, std::vector<SomeClass> events>; 

Holds some events that will happen in some countries in the world.

I want my main function to create this map given a name to the key but without inserting a value.
Let’s say that the key is the name of a country. I want to create the “position” “USA” without inserting an event that will happen in the future.

My event() function will enter a new even without checking if the key is valid

Is this possible? Somehow to enter a value_pair with “empty” value?

UPDATE: No boost …

  • 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-26T23:23:09+00:00Added an answer on May 26, 2026 at 11:23 pm

    Will inserting an empty vector do the trick?…

    events.insert(std::make_pair("USA", std::vector<SomeClass>()));
    

    You could then add actual events without checking of existence of map’s value:

    void event(const std::string& country, const SomeClass& data) {
        events[country].push_back(data);
    }
    

    I’m not sure whether this is what you’re looking for, since the notion of ‘creating “position” “USA”‘ looks ambiguous. (And earlier answers seem to pick different interpretation of it).

    EDIT: As commenters pointed out, inserting the empty vector is not even necessary, since map values are automatically created (using default initializer) & inserted when one uses the [] operator. Hence you you can just do events["USA"].push_back(data) directly.

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

Sidebar

Related Questions

I have a map defined like this std::map<some_key_type, std::string::iterator> mIteratorMap; And a huge string
I have my std::map defined as typedef std::map<string,ImageData*> ImageDataMap; typedef std::pair<string,ImageData*> ImageDataPair; typedef std::map<string,ImageData*>::iterator
let's say I have std::map< std::string, std::string > m_someMap as a private member variable
I have a std::map that I'm using to store values for x and y
If I have a std::vector or std::map variable, and I want to see the
std::map<any, string> is not working so I wonder if there's another approach to have
So I have a container(any kind, probably std::map or std::vector) which contains objects of
I have been trying to make a StringTable class that holds a simple unordered_map<string,
I have an std::map , and I would like to define an iterator that
Following is how my graph is defined. std::map< std::string, std::set<std::string> > g_db; and Following

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.