이 기사에서는 C++ STL에서 map::get_allocator() 함수의 작동, 구문 및 예제에 대해 논의할 것입니다.
C++ STL의 맵이란 무엇입니까?
맵은 키 값과 매핑된 값의 조합으로 구성된 요소를 특정 순서로 저장하는 데 도움이 되는 연관 컨테이너입니다. 맵 컨테이너에서 데이터는 항상 관련 키를 사용하여 내부적으로 정렬됩니다. 맵 컨테이너의 값은 고유 키로 액세스됩니다.
map::get_allocator()란 무엇입니까?
map::get_allocator( )는
구문
map_name.get_allocator(key_value k);
매개변수
이 함수는 매개변수를 허용하지 않습니다.
반환 값
지도의 할당자 개체를 반환합니다.
예시
#include <bits/stdc++.h> using namespace std; int main() { map<int, int> TP; map<int, int>::allocator_type tp = TP.get_allocator(); cout << "checking Is allocator Pair<int, int> : "<< boolalpha << (tp == allocator<pair<int, int> >()); return 0; }
출력
checking Is allocator Pair<int, int> : true
예시
#include <bits/stdc++.h> using namespace std; int main(void) { map<char, int> TP; pair<const char, int>* TP_pair; TP_pair = TP.get_allocator().allocate(5); cout<<"Size after allocating is: " << sizeof(*TP_pair) * 5 << endl; return 0; }
출력
Size after allocating is: 40