"C++ 맵 find()"의 두 판 사이의 차이

(새 문서: ==개요== ;C++ 맵 find() <syntaxhighlight lang='cpp' run> #include <iostream> #include <map> using namespace std; int main() { map<string, int> m; m["a"] = 40; m["b"]...)
 
35번째 줄: 35번째 줄:
* [[C++ 맵]]
* [[C++ 맵]]
* [[C++ find()]]
* [[C++ find()]]
* [[C++ 맵 키 있는지 확인]]


==참고==
==참고==

2023년 11월 23일 (목) 00:34 판

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 }}