"C++ 집합 size()"의 두 판 사이의 차이

 
21번째 줄: 21번째 줄:
* [[C++ size()]]
* [[C++ size()]]
* [[C++ 집합 clear()]]
* [[C++ 집합 clear()]]
* [[C++ 벡터 size()]]


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

2023년 9월 9일 (토) 16:05 기준 최신판

1 개요[ | ]

C++ 집합 size()
C++ 집합 크기
C++ 집합 원소 개수
#include <iostream>
#include <set>
using namespace std;

int main() {
    set<string> s = {"apple", "banana", "cherry"};
    cout << s.size() << endl; // 3
    s.clear();
    cout << s.size() << endl; // 0
}

2 같이 보기[ | ]

3 참고[ | ]

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