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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 2, 20262026-06-02T17:43:43+00:00 2026-06-02T17:43:43+00:00

I want to check if a certain key is found in a map, if

  • 0

I want to check if a certain key is found in a map, if so i want to put it in a variable for other uses, but the thing is I dont want to use iterators. I found the find function in the map class, but it returns an iterator, I want to like check if a key is found in map, if it returns true to obtain it

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-06-02T17:43:45+00:00Added an answer on June 2, 2026 at 5:43 pm

    std::map::count() will inform you if the map contains a particular key. If the key is in the map, then you could use operator[] to get at the value, knowing that a default value will not be added (though as ildjarn points out would require two searches of the map):

    std::map<int, int> m;
    
    m[0] = 1;
    m[1] = 2;
    
    if (m.count(0))
    {
        std::cout << "value=" << m[0] << "\n";
    }
    

    Why find() is unattractive, is not clear to me:

    std::map<int, int>::iterator i = m.find(0);
    if (i != m.end())
    {
        std::cout << "value=" << i->second << "\n";
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I want to check if a certain key/value pair has been set. How do
I want to be able to check if a certain key exists within my
I want to check users' subscribed dates for certain period. And send mail to
I want to check if a certain pattern (eg. a double quoted string) matches
I want to create one so that I could check whether a certain word
I'm using the Zend Framework and I want to check that certain fields are
I want to check whether a certain term is contained in a document. However,
I'm using razor syntax and I want to check to see if certain ViewBag
Possible Duplicate: Efficient way to test string for certain words I want to check
I want to check if a file is older than a certain amount of

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.