이 기사에서는 C++ STL에서 multimap::get_allocator() 함수의 작동, 구문 및 예제에 대해 논의할 것입니다.
C++ STL의 멀티맵이란 무엇입니까?
멀티맵은 맵 컨테이너와 유사한 연관 컨테이너입니다. 또한 키-값과 매핑된 값의 조합으로 구성된 요소를 특정 순서로 쉽게 저장할 수 있습니다. 멀티맵 컨테이너에는 동일한 키와 연결된 여러 요소가 있을 수 있습니다. 데이터는 항상 관련 키를 사용하여 내부적으로 정렬됩니다.
multimap::get_allocator()란 무엇입니까?
multimap::get_allocator() 함수는
할당자는 컨테이너의 동적으로 메모리 할당을 담당하는 개체입니다.
구문
multi_name.get_allocator();
매개변수
함수는 매개변수를 허용하지 않습니다.
반환 값
이 함수는 연결된 컨테이너의 할당자를 반환합니다.
입력
int *Ptr; std::multimap<int> newmap; newmap.insert(make_pair(‘A’, 22)); newmap.insert(make_pair(‘B’, 78)); newmap.insert(make_pair(‘C’, 66)); newmap.insert(make_pair(‘D’, 81)); Ptr = mymap.get_allocator().allocate(4);
출력
ptr = A:22 B:78 C:66 D:81
예시
#include <iostream> #include <map> using namespace std; int main(){ int arrsize; multimap<char, int> mul; pair<const char, int>* pr; pr = mul.get_allocator().allocate(15); // assign some values to array arrsize = sizeof(multimap<char, int>::value_type) * 10; cout << "Size of the allocated array is: "<< arrsize << " bytes.\n"; mul.get_allocator().deallocate(pr, 5); return 0; }
출력
위 코드를 실행하면 다음 출력이 생성됩니다. -
Size of the allocated array is: 80 bytes.
예시
#include <iostream> #include <map> using namespace std; int main(){ int arrsize; multimap<char, int> mul; pair<const char, int>* pr; pr = mul.get_allocator().allocate(2); // assign some values to array arrsize = sizeof(multimap<char, int>::value_type) * 5; cout << "Size of the allocated array is: "<< arrsize << " bytes.\n"; mul.get_allocator().deallocate(pr, 5); return 0; }
출력
위 코드를 실행하면 다음 출력이 생성됩니다. -
Size of the allocated array is: 40 bytes.