I am initializing a map map<string,int> ex;
in C++. I could not find contains_key or similar function in stl,
hence I am just using ex[inputString]++;
The debugger shows the int to be initialized to zero correctly, is it a good assumption?
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
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.
Yes, values that do not exist when accessed with
operator[]are default-constructed. For numeric values, this is 0.That said, you’re looking for the
countmethod: