multimap::const_iterator
A type that provides a bidirectional iterator that can read a const element in the multimap.
typedef implementation-defined const_iterator;
설명
이 const_iterator 유형은 요소의 값을 수정하는 것을 사용할 수 없습니다.
The const_iterator defined by multimap points to objects of value_type, which are of type pair*<const Key, Type>*. The value of the key is available through the first member pair and the value of the mapped element is available through the second member of the pair.
To dereference a const_iterator cIter pointing to an element in a multimap, use the -> operator.
To access the value of the key for the element, use cIter -> first, which is equivalent to (*cIter).first. To access the value of the mapped datum for the element, use cIter -> second, which is equivalent to (*cIter).second.
예제
See the example for begin for an example using const_iterator.
요구 사항
헤더: <맵>
네임스페이스: std