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

(새 문서: ==개요== ;C++ 맵 empty() ==같이 보기== {{z컬럼3| * C++ 맵 * C++ empty() * C++ 맵 size() * C++ 맵 clear() * C++ 벡터 empty() }} ==참고== * https:/...)
 
 
1번째 줄: 1번째 줄:
==개요==
==개요==
;C++ 맵 empty()
;C++ 맵 empty()
<syntaxhighlight lang='cpp' run>
#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
}
</syntaxhighlight>


==같이 보기==
==같이 보기==

2023년 9월 9일 (토) 17:44 기준 최신판

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