14
주어진 키가 C ++ std :: map에 있는지 확인하는 방법
주어진 키가 맵에 있는지 확인하고 다소 할 수 없습니다. typedef map<string,string>::iterator mi; map<string, string> m; m.insert(make_pair("f","++--")); pair<mi,mi> p = m.equal_range("f");//I'm not sure if equal_range does what I want cout << p.first;//I'm getting error here p에있는 내용을 어떻게 인쇄 할 수 있습니까?
451
c++
dictionary
stl