Movatterモバイル変換


[0]ホーム

URL:


We bake cookies in your browser for a better experience. Using this site means that you consent.Read More

Menu

Qt Documentation

QVectorIterator Class

TheQVectorIterator class provides a Java-style const iterator forQVector andQStack.More...

Header:#include <QVectorIterator>

Public Functions

QVectorIterator(const QVector<T> & vector)
boolfindNext(const T & value)
boolfindPrevious(const T & value)
boolhasNext() const
boolhasPrevious() const
const T &next()
const T &peekNext() const
const T &peekPrevious() const
const T &previous()
voidtoBack()
voidtoFront()
QVectorIterator &operator=(const QVector<T> & vector)

Detailed Description

TheQVectorIterator class provides a Java-style const iterator forQVector andQStack.

QVector has bothJava-style iterators andSTL-style iterators. The Java-style iterators are more high-level and easier to use than the STL-style iterators; on the other hand, they are slightly less efficient.

An alternative to using iterators is to use index positions. MostQVector member functions take an index as their first parameter, making it possible to access, insert, and remove items without using iterators.

QVectorIterator<T> allows you to iterate over aQVector<T> (or aQStack<T>). If you want to modify the vector as you iterate over it, useQMutableVectorIterator<T> instead.

TheQVectorIterator constructor takes aQVector as argument. After construction, the iterator is located at the very beginning of the vector (before the first item). Here's how to iterate over all the elements sequentially:

QVector<float> vector;...QVectorIterator<float> i(vector);while (i.hasNext())qDebug()<< i.next();

Thenext() function returns the next item in the vector and advances the iterator. Unlike STL-style iterators, Java-style iterators pointbetween items rather than directlyat items. The first call tonext() advances the iterator to the position between the first and second item, and returns the first item; the second call tonext() advances the iterator to the position between the second and third item, returning the second item; and so on.

Here's how to iterate over the elements in reverse order:

QVectorIterator<float> i(vector);i.toBack();while (i.hasPrevious())qDebug()<< i.previous();

If you want to find all occurrences of a particular value, usefindNext() orfindPrevious() in a loop.

Multiple iterators can be used on the same vector. If the vector is modified while aQVectorIterator is active, theQVectorIterator will continue iterating over the original vector, ignoring the modified copy.

See alsoQMutableVectorIterator andQVector::const_iterator.

Member Function Documentation

QVectorIterator::QVectorIterator(constQVector<T> & vector)

Constructs an iterator for traversingvector. The iterator is set to be at the front of the vector (before the first item).

See alsooperator=().

bool QVectorIterator::findNext(constT & value)

Searches forvalue starting from the current iterator position forward. Returns true ifvalue is found; otherwise returns false.

After the call, ifvalue was found, the iterator is positioned just after the matching item; otherwise, the iterator is positioned at the back of the container.

See alsofindPrevious().

bool QVectorIterator::findPrevious(constT & value)

Searches forvalue starting from the current iterator position backward. Returns true ifvalue is found; otherwise returns false.

After the call, ifvalue was found, the iterator is positioned just before the matching item; otherwise, the iterator is positioned at the front of the container.

See alsofindNext().

bool QVectorIterator::hasNext() const

Returns true if there is at least one item ahead of the iterator, i.e. the iterator isnot at the back of the container; otherwise returns false.

See alsohasPrevious() andnext().

bool QVectorIterator::hasPrevious() const

Returns true if there is at least one item behind the iterator, i.e. the iterator isnot at the front of the container; otherwise returns false.

See alsohasNext() andprevious().

constT & QVectorIterator::next()

Returns the next item and advances the iterator by one position.

Calling this function on an iterator located at the back of the container leads to undefined results.

See alsohasNext(),peekNext(), andprevious().

constT & QVectorIterator::peekNext() const

Returns the next item without moving the iterator.

Calling this function on an iterator located at the back of the container leads to undefined results.

See alsohasNext(),next(), andpeekPrevious().

constT & QVectorIterator::peekPrevious() const

Returns the previous item without moving the iterator.

Calling this function on an iterator located at the front of the container leads to undefined results.

See alsohasPrevious(),previous(), andpeekNext().

constT & QVectorIterator::previous()

Returns the previous item and moves the iterator back by one position.

Calling this function on an iterator located at the front of the container leads to undefined results.

See alsohasPrevious(),peekPrevious(), andnext().

void QVectorIterator::toBack()

Moves the iterator to the back of the container (after the last item).

See alsotoFront() andprevious().

void QVectorIterator::toFront()

Moves the iterator to the front of the container (before the first item).

See alsotoBack() andnext().

QVectorIterator & QVectorIterator::operator=(constQVector<T> & vector)

Makes the iterator operate onvector. The iterator is set to be at the front of the vector (before the first item).

See alsotoFront() andtoBack().

© 2016 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 theGNU 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.


[8]ページ先頭

©2009-2025 Movatter.jp