std :: map에 요소가 있는지 확인하는 방법은 무엇입니까? 내 사용 사례 : map cars; bool exists(const string& name) { // somehow I should find whether my MAP has a car // with the name provided return false; } C ++로 수행하는 가장 좋고 가장 우아한 방법을 제안 해 주시겠습니까? 감사. 물론입니다. 반복자를 사용하세요. map::const_iterator it = cars.find(name); return it!=cars.end(); return cars.find(name) != cars.end(); 당신은 또한 사용할 수 있습니다 bool exists(const string& name)..