C++ 맵 키 있는지 확인

Jmnote (토론 | 기여)님의 2023년 11월 23일 (목) 00:33 판 (새 문서: ==개요== ;C++ 맵 키 있는지 확인 <syntaxhighlight lang='cpp' run> #include <iostream> #include <map> using namespace std; int main() { map<string,int> m = {{"apple",100},...)
(차이) ← 이전 판 | 최신판 (차이) | 다음 판 → (차이)

1 개요

C++ 맵 키 있는지 확인
#include <iostream>
#include <map>
using namespace std;

int main() {
    map<string,int> m = {{"apple",100}, {"banana",2}};
    cout << (m.find("apple") != m.end()) << endl;     // 1: found
    cout << (m.find("cranberry") != m.end()) << endl; // 0: not found
}

2 같이 보기

문서 댓글 ({{ doc_comments.length }})
{{ comment.name }} {{ comment.created | snstime }}