C++ 맵 find()

Jmnote (토론 | 기여)님의 2023년 11월 23일 (목) 01:10 판

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 = {{"apple",40},{"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 }}