unordered_multiset::pointer
형식 요소에 대 한 포인터입니다.
typedef Alloc::pointer pointer;
설명
한 포인터 제어 되는 시퀀스의 요소를 사용할 수 있는 개체 종류를 설명 합니다.
예제
// std_tr1__unordered_set__unordered_multiset_pointer.cpp
// compile with: /EHsc
#include <unordered_set>
#include <iostream>
typedef std::unordered_multiset<char> Myset;
int main()
{
Myset c1;
c1.insert('a');
c1.insert('b');
c1.insert('c');
// display contents " [c] [b] [a]"
for (Myset::iterator it = c1.begin();
it != c1.end(); ++it)
{
Myset::key_type key = *it;
Myset::pointer p = &key;
std::cout << " [" << *p << "]";
}
std::cout << std::endl;
return (0);
}
요구 사항
헤더: <unordered_set>
네임 스페이스: 국방 표준
참고 항목
참조
unordered_multiset::const_pointer