QJSValueIterator Class
QJSValueIterator 类为QJSValue 提供了 Java 风格的迭代器。更多
Header: | #include <QJSValueIterator> |
CMake: | find_package(Qt6 REQUIRED COMPONENTS Qml) target_link_libraries(mytarget PRIVATE Qt6::Qml) |
qmake: | QT += qml |
公共函数
QJSValueIterator(const QJSValue &object) | |
~QJSValueIterator() | |
bool | hasNext() const |
QString | name() const |
bool | next() |
QJSValue | value() const |
QJSValueIterator & | operator=(QJSValue &object) |
详细说明
QJSValueIterator 构造函数的参数是QJSValue 。构造完成后,迭代器位于属性序列的最开始。下面是如何遍历QJSValue 的所有属性:
QJSValue对象;...QJSValueIteratorit(object);while(it.hasNext()) { it.next(); qDebug() << it.name() << ": " << it.value().toString(); }
next() 使迭代器前进。name() 和value() 函数返回最后跳过项目的名称和值。
请注意,QJSValueIterator 只迭代QJSValue 自己的属性;也就是说,它不会跟随原型链。您可以使用类似这样的循环来跟踪原型链:
QJSValueobj= ...;// 要遍历的对象while(obj.isObject()) { QJSValueIteratorit(obj);while(it.hasNext()) { it.next(); qDebug() << it.name(); } obj=obj.prototype(); }
另请参见 QJSValue::property().
成员函数文档
QJSValueIterator::QJSValueIterator(const QJSValue &object)
构造一个遍历object 的迭代器。迭代器被设置为位于属性序列的前端(第一个属性之前)。
[noexcept]
QJSValueIterator::~QJSValueIterator()
销毁迭代器。
bool QJSValueIterator::hasNext() const
如果迭代器前面至少有一个项目(即迭代器不在属性序列的后面),则返回 true;否则返回 false。
另请参见 next()。
QString QJSValueIterator::name() const
返回使用next() 跳转的最后一个属性的名称。
另请参阅 value() 。
bool QJSValueIterator::next()
将迭代器前进一个位置。如果迭代器前面至少有一个条目(即迭代器尚未位于属性序列的后面),则返回 true;否则返回 false。
QJSValue QJSValueIterator::value() const
返回使用next() 跳转的最后一个属性的值。
另请参阅 name()。
QJSValueIterator &QJSValueIterator::operator=(QJSValue &object)
使迭代器在object 上运行。迭代器被设置在属性序列的前面(第一个属性之前)。
© 2025 The Qt Company Ltd. Documentation contributions included herein are the copyrights of their respective owners. The documentation provided herein is licensed under the terms of the GNU Free Documentation License version 1.3 as published by the Free Software Foundation. Qt and respective logos are trademarks of The Qt Company Ltd. in Finland and/or other countries worldwide. All other trademarks are property of their respective owners.