14
Como descobrir se uma chave existe em um C ++ std :: map
Estou tentando verificar se uma determinada chave está em um mapa e de alguma forma não consigo: 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 então, como posso imprimir o que está em …
450
c++
dictionary
stl