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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 13, 20262026-05-13T08:37:38+00:00 2026-05-13T08:37:38+00:00

Whats the difference? I want to be able to see if an element is

  • 0

Whats the difference?

I want to be able to see if an element is in a HashMap and I just found out that if I do h[element], it will return the default element if it is not found, and not null. How would I use the iterator find method to see if the element is there?

Thanks

  • 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-13T08:37:39+00:00Added an answer on May 13, 2026 at 8:37 am

    Assuming you’re talking about STL and not some 3rd party library… m[key] doesn’t just return the default object if key isn’t in the map. It will create a new element in the map with that key and a default-constructed object as value.

    You could use this:

    map<string, int> mymap;
    //add items to it
    map<string, int>::iterator it = mymap.find("key");
    if (it != myMap.end()) {
        // 'key' exists; (it->second) is the corresponding int
    }
    

    Or if you don’t need to get the object (you just want to know if it exists):

    map<string, int> mymap;
    //add items to it
    if (mymap.count("key") == 1) {
        // 'key' exists
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I just want to know what is the difference between these two messaging constants.
I just want to know what is the actual difference between private and protected
I want to be able to see what's going wrong when my application crashes
I want to know what's the difference between OracleServiceORAL service(on Window XP) and Oracle
I want to know what is the difference between .Net Framework and .Net MonoframeWork
Want to know what is the difference between ipv4 and ipv6 and how does
What is the difference between TCP listener and TCP server? I want to communicate
Pretty simple. What is the difference among those three? I want to list every
I m new in iPhone, i want to know what is the difference b/w
I want to know what is the basic difference between these to files -

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.