C++ 맵 find()

Jmnote (토론 | 기여)님의 2023년 9월 10일 (일) 13:27 판 (새 문서: ==개요== ;C++ 맵 find() <syntaxhighlight lang='cpp' run> #include <iostream> #include <map> using namespace std; int main() { map<string, int> m; m["a"] = 40; m["b"]...)
(차이) ← 이전 판 | 최신판 (차이) | 다음 판 → (차이)

1 개요

C++ 맵 find()
#include <iostream>
#include <map>
using namespace std;

int main() {
    map<string, int> m;
    m["a"] = 40;
    m["b"] = -74;
    
    cout << (m.find("a") != m.end()) << endl; // 1 (exists)
    cout << (m.find("x") != m.end()) << endl; // 0 (not exists)
}
#include <iostream>
#include <map>
using namespace std;

int main() {
    map<string, int> m;
    m["apple"] = 40;
    m["lemon"] = -74;

    cout << m.find("apple")->second << endl; // 40
    cout << m.find("lemon")->second << endl; // -74
    cout << m.find("onion")->second << endl; // 1864668064 (not exists)
}

2 같이 보기

3 참고

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