迭代关联容器的键/值对。 更多...
头: | #include <QKeyValueIterator> |
CMake: |
find_package(Qt6 COMPONENTS Core REQUIRED)
target_link_libraries(mytarget PRIVATE Qt6::Core) |
qmake: | QT += core |
Since: | Qt 5.10 |
QKeyValueIterator (Iterator o ) | |
QKeyValueIterator () | |
迭代器 | base () const |
std::pair<Key, T> | operator* () const |
QKeyValueIterator<Key, T, Iterator> & | operator++ () |
QKeyValueIterator<Key, T, Iterator> | operator++ (int) |
QKeyValueIterator<Key, T, Iterator> & | operator-- () |
QKeyValueIterator<Key, T, Iterator> | operator-- (int) |
QKeyValueIterator::pointer | operator-> () const |
bool | operator!= (QKeyValueIterator<Key, T, Iterator> lhs , QKeyValueIterator<Key, T, Iterator> rhs ) |
bool | operator== (QKeyValueIterator<Key, T, Iterator> lhs , QKeyValueIterator<Key, T, Iterator> rhs ) |
The QKeyValueIterator class provides an STL-style iterator for returning key/value pairs from associative containers like QHash and QMap . It supports the same API as the STL associative containers, i.e. getting a key/value pair when iterating through the container.
This will allow for better interoperability between QMap , QHash and friends and STL-style algorithms.
警告: 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 隐式共享迭代器问题 .
Constructs a QKeyValueIterator on top of o .
构造默认 QKeyValueIterator。
Returns the underlying iterator this QKeyValueIterator is based on.
成对返回当前条目。
The prefix ++ operator (
++i
) advances the iterator to the next item in the container and returns the iterator.
注意: Advancing the iterator past its container's end() constitutes undefined behavior.
另请参阅 operator-- ().
这是重载函数。
The postfix ++ operator (
i++
) advances the iterator to the next item in the container and returns the iterator's prior value.
注意: Advancing the iterator past its container's end() constitutes undefined behavior.
The prefix -- operator (
--i
) backs the iterator up to the previous item in the container and returns the iterator.
注意: Backing up an iterator to before its container's begin() constitutes undefined behavior.
另请参阅 operator++ ().
这是重载函数。
The postfix -- operator (
i--
) backs the iterator up to the previous item in the container and returns the iterator's prior value.
注意: Backing up an iterator to before its container's begin() constitutes undefined behavior.
[since 5.15]
QKeyValueIterator::pointer
QKeyValueIterator::
operator->
() const
Returns the current entry as a pointer-like object to the pair.
该函数在 Qt 5.15 引入。
另请参阅 operator* ().
返回
true
if
rhs
points to a different item than
lhs
otherwise returns
false
.
另请参阅 operator== ().
返回
true
if
rhs
points to the same item as
lhs
otherwise returns
false
.
另请参阅 operator!= ().