const_iterator Class▲
-
Header: const_iterator
-
CMake:
find_package(Qt6 REQUIRED COMPONENTS Core)
target_link_libraries(mytarget PRIVATE Qt6::Core)
-
qmake: QT += core
Detailed Description▲
QMultiMap features both STL-style iterators and Java-style iterators. The STL-style iterators are more low-level and more cumbersome to use; on the other hand, they are slightly faster and, for developers who already know STL, have the advantage of familiarity.
QMultiMap<Key, T>::const_iterator allows you to iterate over a QMultiMap. If you want to modify the QMultiMap as you iterate over it, you must use QMultiMap::iterator instead. It is generally good practice to use QMultiMap::const_iterator on a non-const QMultiMap as well, unless you need to change the QMultiMap through the iterator. Const iterators are slightly faster, and can improve code readability.
The default QMultiMap::const_iterator constructor creates an uninitialized iterator. You must initialize it using a QMultiMap function like QMultiMap::constBegin(), QMultiMap::constEnd(), or QMultiMap::find() before you can start iterating. Here's a typical loop that prints all the (key, value) pairs stored in a map:
QMultiMap&
lt;QString, int
&
gt; multi;
multimap.insert("January"
, 1
);
multimap.insert("February"
, 2
);
...
multimap.insert("December"
, 12
);
QMultiMap&
lt;QString, int
&
gt;::
const_iterator i;
for
(i =
multimap.constBegin(); i !=
multimap.constEnd(); ++
i)
cout &
lt;&
lt; i.key() &
lt;&
lt; ": "
&
lt;&
lt; i.value() &
lt;&
lt; Qt::
endl;
Unlike QMultiHash, which stores its items in an arbitrary order, QMultiMap stores its items ordered by key. Items that share the same key will appear consecutively, from the most recently to the least recently inserted value.
Multiple iterators can be used on the same multi map. If you add items to the map, existing iterators will remain valid. If you remove items from the map, iterators that point to the removed items will become dangling iterators.
Iterators on implicitly shared containers do not work exactly like STL-iterators. You should avoid copying a container while iterators are active on that container. For more information, read Implicit sharing iterator problem.
See Also▲
Member Type Documentation▲
[alias] const_iterator::iterator_category▲
A synonym for std::bidirectional_iterator_tag indicating this iterator is a bidirectional iterator.
Member Function Documentation▲
const_iterator::const_iterator()▲
Constructs an uninitialized iterator.
Functions like key(), value(), and operator++() must not be called on an uninitialized iterator. Use operator=() to assign a value to it before using it.
See Also▲
See also QMultiMap::constBegin(), QMultiMap::constEnd()
const_iterator::const_iterator(const iterator &other)▲
Constructs a copy of other.
const Key &const_iterator::key() const▲
const T &const_iterator::value() const▲
const T &const_iterator::operator*() const▲
const_iterator &const_iterator::operator++()▲
The prefix ++ operator (++i) advances the iterator to the next item in the map and returns an iterator to the new current item.
Calling this function on QMultiMap::end() leads to undefined results.
See Also▲
See also operator--()
const_iterator const_iterator::operator++(int)▲
This is an overloaded function.
The postfix ++ operator (i++) advances the iterator to the next item in the map and returns an iterator to the previously current item.
const_iterator &const_iterator::operator--()▲
The prefix – operator (--i) makes the preceding item current and returns an iterator pointing to the new current item.
Calling this function on QMultiMap::begin() leads to undefined results.
See Also▲
See also operator++()
const_iterator const_iterator::operator--(int)▲
This is an overloaded function.
The postfix – operator (i--) makes the preceding item current and returns an iterator pointing to the previously current item.
const T *const_iterator::operator->() const▲
Related Non-Members▲
bool operator==(const const_iterator &lhs, const const_iterator &rhs)▲
Returns true if lhs points to the same item as the rhs iterator; otherwise returns false.
See Also▲
See also operator!=()
bool operator!=(const const_iterator &lhs, const const_iterator &rhs)▲
Returns true if lhs points to a different item than the rhs iterator; otherwise returns false.
See Also▲
See also operator==()
Obsolete Members for const_iterator▲
The following members of class const_iterator are deprecated. We strongly advise against using them in new code.
Obsolete Member Function Documentation▲
const_iterator &const_iterator::operator+=(const_iterator::difference_type n)▲
const_iterator &const_iterator::operator-=(const_iterator::difference_type n)
const_iterator operator+(const_iterator it, const_iterator::difference_type j)
const_iterator operator+(const_iterator::difference_type j, const_iterator it)
const_iterator operator-(const_iterator it, const_iterator::difference_type j)
const_iterator operator-(const_iterator::difference_type j, const_iterator it)
This function is deprecated since 6.2. We strongly advise against using it in new code.
Use std::next, std::prev or std::advance instead.
Move an iterator by n positions. These operations can be expensive for large values of n. QMultiMap iterators are not random access.