C++ 맵 empty()

1 개요[ | ]

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

int main() {
    map<string, int> m;
    cout << m.empty() << endl; // 1
    m["x"] = 40;
    cout << m.empty() << endl; // 0
}

2 같이 보기[ | ]

3 참고[ | ]

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