1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE html>
<html lang="en">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<!-- qiterator.qdoc -->
<title>QVectorIterator Class | Qt Core 5.11</title>
<link rel="stylesheet" type="text/css" href="style/offline-simple.css" />
<script type="text/javascript">
document.getElementsByTagName("link").item(0).setAttribute("href", "style/offline.css");
// loading style sheet breaks anchors that were jumped to before
// so force jumping to anchor again
setTimeout(function() {
var anchor = location.hash;
// need to jump to different anchor first (e.g. none)
location.hash = "#";
setTimeout(function() {
location.hash = anchor;
}, 0);
}, 0);
</script>
</head>
<body>
<div class="header" id="qtdocheader">
<div class="main">
<div class="main-rounded">
<div class="navigationbar">
<table><tr>
<td ><a href="../qtdoc/index.html">Qt 5.11</a></td><td ><a href="qtcore-index.html">Qt Core</a></td><td ><a href="qtcore-module.html">C++ Classes</a></td><td >QVectorIterator</td></tr></table><table class="buildversion"><tr>
<td id="buildversion" width="100%" align="right">Qt 5.11.2 Reference Documentation</td>
</tr></table>
</div>
</div>
<div class="content">
<div class="line">
<div class="content mainContent">
<div class="sidebar">
<div class="toc">
<h3><a name="toc">Contents</a></h3>
<ul>
<li class="level1"><a href="#public-functions">Public Functions</a></li>
<li class="level1"><a href="#details">Detailed Description</a></li>
</ul>
</div>
<div class="sidebar-content" id="sidebar-content"></div></div>
<h1 class="title">QVectorIterator Class</h1>
<!-- $$$QVectorIterator-brief -->
<p>The <a href="qvectoriterator.html">QVectorIterator</a> class provides a Java-style const iterator for <a href="qvector.html">QVector</a> and <a href="qstack.html">QStack</a>. <a href="#details">More...</a></p>
<!-- @@@QVectorIterator -->
<div class="table"><table class="alignedsummary">
<tr><td class="memItemLeft rightAlign topAlign"> Header:</td><td class="memItemRight bottomAlign"> <span class="preprocessor">#include <QVectorIterator></span>
</td></tr><tr><td class="memItemLeft rightAlign topAlign"> qmake:</td><td class="memItemRight bottomAlign"> QT += core</td></tr></table></div><ul>
<li><a href="qvectoriterator-members.html">List of all members, including inherited members</a></li>
</ul>
<a name="public-functions"></a>
<h2 id="public-functions">Public Functions</h2>
<div class="table"><table class="alignedsummary">
<tr><td class="memItemLeft rightAlign topAlign"> </td><td class="memItemRight bottomAlign"><b><a href="qvectoriterator.html#QVectorIterator">QVectorIterator</a></b>(const QVector<T> &<i>vector</i>)</td></tr>
<tr><td class="memItemLeft rightAlign topAlign"> bool </td><td class="memItemRight bottomAlign"><b><a href="qvectoriterator.html#findNext">findNext</a></b>(const T &<i>value</i>)</td></tr>
<tr><td class="memItemLeft rightAlign topAlign"> bool </td><td class="memItemRight bottomAlign"><b><a href="qvectoriterator.html#findPrevious">findPrevious</a></b>(const T &<i>value</i>)</td></tr>
<tr><td class="memItemLeft rightAlign topAlign"> bool </td><td class="memItemRight bottomAlign"><b><a href="qvectoriterator.html#hasNext">hasNext</a></b>() const</td></tr>
<tr><td class="memItemLeft rightAlign topAlign"> bool </td><td class="memItemRight bottomAlign"><b><a href="qvectoriterator.html#hasPrevious">hasPrevious</a></b>() const</td></tr>
<tr><td class="memItemLeft rightAlign topAlign"> const T &</td><td class="memItemRight bottomAlign"><b><a href="qvectoriterator.html#next">next</a></b>()</td></tr>
<tr><td class="memItemLeft rightAlign topAlign"> const T &</td><td class="memItemRight bottomAlign"><b><a href="qvectoriterator.html#peekNext">peekNext</a></b>() const</td></tr>
<tr><td class="memItemLeft rightAlign topAlign"> const T &</td><td class="memItemRight bottomAlign"><b><a href="qvectoriterator.html#peekPrevious">peekPrevious</a></b>() const</td></tr>
<tr><td class="memItemLeft rightAlign topAlign"> const T &</td><td class="memItemRight bottomAlign"><b><a href="qvectoriterator.html#previous">previous</a></b>()</td></tr>
<tr><td class="memItemLeft rightAlign topAlign"> void </td><td class="memItemRight bottomAlign"><b><a href="qvectoriterator.html#toBack">toBack</a></b>()</td></tr>
<tr><td class="memItemLeft rightAlign topAlign"> void </td><td class="memItemRight bottomAlign"><b><a href="qvectoriterator.html#toFront">toFront</a></b>()</td></tr>
<tr><td class="memItemLeft rightAlign topAlign"> QVectorIterator<T> &</td><td class="memItemRight bottomAlign"><b><a href="qvectoriterator.html#operator-eq">operator=</a></b>(const QVector<T> &<i>container</i>)</td></tr>
</table></div>
<a name="details"></a>
<!-- $$$QVectorIterator-description -->
<div class="descr">
<h2 id="details">Detailed Description</h2>
<p>The <a href="qvectoriterator.html">QVectorIterator</a> class provides a Java-style const iterator for <a href="qvector.html">QVector</a> and <a href="qstack.html">QStack</a>.</p>
<p><a href="qvector.html">QVector</a> has both <a href="containers.html#java-style-iterators">Java-style iterators</a> and <a href="containers.html#stl-style-iterators">STL-style iterators</a>. 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.</p>
<p>An alternative to using iterators is to use index positions. Most <a href="qvector.html">QVector</a> member functions take an index as their first parameter, making it possible to access, insert, and remove items without using iterators.</p>
<p><a href="qvectoriterator.html">QVectorIterator</a><T> allows you to iterate over a <a href="qvector.html">QVector</a><T> (or a <a href="qstack.html">QStack</a><T>). If you want to modify the vector as you iterate over it, use <a href="qmutablevectoriterator.html">QMutableVectorIterator</a><T> instead.</p>
<p>The <a href="qvectoriterator.html">QVectorIterator</a> constructor takes a <a href="qvector.html">QVector</a> 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:</p>
<pre class="cpp">
<span class="type"><a href="qvector.html">QVector</a></span><span class="operator"><</span><span class="type">float</span><span class="operator">></span> vector;
<span class="operator">.</span><span class="operator">.</span><span class="operator">.</span>
<span class="type"><a href="qvectoriterator.html#QVectorIterator">QVectorIterator</a></span><span class="operator"><</span><span class="type">float</span><span class="operator">></span> i(vector);
<span class="keyword">while</span> (i<span class="operator">.</span>hasNext())
<a href="qtglobal.html#qDebug">qDebug</a>() <span class="operator"><</span><span class="operator"><</span> i<span class="operator">.</span>next();
</pre>
<p>The <a href="qvectoriterator.html#next">next</a>() function returns the next item in the vector and advances the iterator. Unlike STL-style iterators, Java-style iterators point <i>between</i> items rather than directly <i>at</i> items. The first call to <a href="qvectoriterator.html#next">next</a>() advances the iterator to the position between the first and second item, and returns the first item; the second call to <a href="qvectoriterator.html#next">next</a>() advances the iterator to the position between the second and third item, returning the second item; and so on.</p>
<p class="centerAlign"><img src="images/javaiterators1.png" alt="" /></p><p>Here's how to iterate over the elements in reverse order:</p>
<pre class="cpp">
<span class="type"><a href="qvectoriterator.html#QVectorIterator">QVectorIterator</a></span><span class="operator"><</span><span class="type">float</span><span class="operator">></span> i(vector);
i<span class="operator">.</span>toBack();
<span class="keyword">while</span> (i<span class="operator">.</span>hasPrevious())
<a href="qtglobal.html#qDebug">qDebug</a>() <span class="operator"><</span><span class="operator"><</span> i<span class="operator">.</span>previous();
</pre>
<p>If you want to find all occurrences of a particular value, use <a href="qvectoriterator.html#findNext">findNext</a>() or <a href="qvectoriterator.html#findPrevious">findPrevious</a>() in a loop.</p>
<p>Multiple iterators can be used on the same vector. If the vector is modified while a <a href="qvectoriterator.html">QVectorIterator</a> is active, the <a href="qvectoriterator.html">QVectorIterator</a> will continue iterating over the original vector, ignoring the modified copy.</p>
</div>
<p><b>See also </b><a href="qmutablevectoriterator.html">QMutableVectorIterator</a> and <a href="qvector.html#const_iterator-typedef">QVector::const_iterator</a>.</p>
<!-- @@@QVectorIterator -->
<div class="func">
<h2>Member Function Documentation</h2>
<!-- $$$ -->
<h3 class="fn fngroupitem" id="findPrevious"><a name="findPrevious"></a><span class="type">bool</span> QVectorIterator::<span class="name">findPrevious</span>(const <span class="type">T</span> &<i>value</i>)</h3>
<p>Searches for <i>value</i> starting from the current iterator position backward. Returns <code>true</code> if <i>value</i> is found; otherwise returns false.</p>
<p>After the call, if <i>value</i> was found, the iterator is positioned just before the matching item; otherwise, the iterator is positioned at the front of the container.</p>
<p><b>See also </b><a href="qvectoriterator.html#findNext">findNext</a>().</p>
<!-- @@@ -->
<!-- $$$ -->
<h3 class="fn fngroupitem" id="findNext"><a name="findNext"></a><span class="type">bool</span> QVectorIterator::<span class="name">findNext</span>(const <span class="type">T</span> &<i>value</i>)</h3>
<p>Searches for <i>value</i> starting from the current iterator position forward. Returns <code>true</code> if <i>value</i> is found; otherwise returns <code>false</code>.</p>
<p>After the call, if <i>value</i> was found, the iterator is positioned just after the matching item; otherwise, the iterator is positioned at the back of the container.</p>
<p><b>See also </b><a href="qvectoriterator.html#findPrevious">findPrevious</a>().</p>
<!-- @@@ -->
<!-- $$$ -->
<h3 class="fn fngroupitem" id="peekPrevious"><a name="peekPrevious"></a>const <span class="type">T</span> &QVectorIterator::<span class="name">peekPrevious</span>() const</h3>
<p>Returns the previous item without moving the iterator.</p>
<p>Calling this function on an iterator located at the front of the container leads to undefined results.</p>
<p><b>See also </b><a href="qvectoriterator.html#hasPrevious">hasPrevious</a>(), <a href="qvectoriterator.html#previous">previous</a>(), and <a href="qvectoriterator.html#peekNext">peekNext</a>().</p>
<!-- @@@ -->
<!-- $$$ -->
<h3 class="fn fngroupitem" id="previous"><a name="previous"></a>const <span class="type">T</span> &QVectorIterator::<span class="name">previous</span>()</h3>
<p>Returns the previous item and moves the iterator back by one position.</p>
<p>Calling this function on an iterator located at the front of the container leads to undefined results.</p>
<p><b>See also </b><a href="qvectoriterator.html#hasPrevious">hasPrevious</a>(), <a href="qvectoriterator.html#peekPrevious">peekPrevious</a>(), and <a href="qvectoriterator.html#next">next</a>().</p>
<!-- @@@ -->
<!-- $$$ -->
<h3 class="fn fngroupitem" id="hasPrevious"><a name="hasPrevious"></a><span class="type">bool</span> QVectorIterator::<span class="name">hasPrevious</span>() const</h3>
<p>Returns <code>true</code> if there is at least one item behind the iterator, i.e. the iterator is <i>not</i> at the front of the container; otherwise returns <code>false</code>.</p>
<p><b>See also </b><a href="qvectoriterator.html#hasNext">hasNext</a>() and <a href="qvectoriterator.html#previous">previous</a>().</p>
<!-- @@@ -->
<!-- $$$ -->
<h3 class="fn fngroupitem" id="peekNext"><a name="peekNext"></a>const <span class="type">T</span> &QVectorIterator::<span class="name">peekNext</span>() const</h3>
<p>Returns the next item without moving the iterator.</p>
<p>Calling this function on an iterator located at the back of the container leads to undefined results.</p>
<p><b>See also </b><a href="qvectoriterator.html#hasNext">hasNext</a>(), <a href="qvectoriterator.html#next">next</a>(), and <a href="qvectoriterator.html#peekPrevious">peekPrevious</a>().</p>
<!-- @@@ -->
<!-- $$$ -->
<h3 class="fn fngroupitem" id="next"><a name="next"></a>const <span class="type">T</span> &QVectorIterator::<span class="name">next</span>()</h3>
<p>Returns the next item and advances the iterator by one position.</p>
<p>Calling this function on an iterator located at the back of the container leads to undefined results.</p>
<p><b>See also </b><a href="qvectoriterator.html#hasNext">hasNext</a>(), <a href="qvectoriterator.html#peekNext">peekNext</a>(), and <a href="qvectoriterator.html#previous">previous</a>().</p>
<!-- @@@ -->
<!-- $$$ -->
<h3 class="fn fngroupitem" id="hasNext"><a name="hasNext"></a><span class="type">bool</span> QVectorIterator::<span class="name">hasNext</span>() const</h3>
<p>Returns <code>true</code> if there is at least one item ahead of the iterator, i.e. the iterator is <i>not</i> at the back of the container; otherwise returns <code>false</code>.</p>
<p><b>See also </b><a href="qvectoriterator.html#hasPrevious">hasPrevious</a>() and <a href="qvectoriterator.html#next">next</a>().</p>
<!-- @@@ -->
<!-- $$$ -->
<h3 class="fn fngroupitem" id="toBack"><a name="toBack"></a><span class="type">void</span> QVectorIterator::<span class="name">toBack</span>()</h3>
<p>Moves the iterator to the back of the container (after the last item).</p>
<p><b>See also </b><a href="qvectoriterator.html#toFront">toFront</a>() and <a href="qvectoriterator.html#previous">previous</a>().</p>
<!-- @@@ -->
<!-- $$$ -->
<h3 class="fn fngroupitem" id="toFront"><a name="toFront"></a><span class="type">void</span> QVectorIterator::<span class="name">toFront</span>()</h3>
<p>Moves the iterator to the front of the container (before the first item).</p>
<p><b>See also </b><a href="qvectoriterator.html#toBack">toBack</a>() and <a href="qvectoriterator.html#next">next</a>().</p>
<!-- @@@ -->
<!-- $$$ -->
<h3 class="fn fngroupitem" id="operator-eq"><a name="operator-eq"></a><span class="type"><a href="qvectoriterator.html#QVectorIterator">QVectorIterator</a></span><<span class="type">T</span>> &QVectorIterator::<span class="name">operator=</span>(const <span class="type"><a href="qvector.html">QVector</a></span><<span class="type">T</span>> &<i>container</i>)</h3>
<p>Makes the iterator operate on <i>vector</i>. The iterator is set to be at the front of the vector (before the first item).</p>
<p><b>See also </b><a href="qvectoriterator.html#toFront">toFront</a>() and <a href="qvectoriterator.html#toBack">toBack</a>().</p>
<!-- @@@ -->
<!-- $$$ -->
<h3 class="fn fngroupitem" id="QVectorIterator"><a name="QVectorIterator"></a>QVectorIterator::<span class="name">QVectorIterator</span>(const <span class="type"><a href="qvector.html">QVector</a></span><<span class="type">T</span>> &<i>vector</i>)</h3>
<p>Constructs an iterator for traversing <i>vector</i>. The iterator is set to be at the front of the vector (before the first item).</p>
<p><b>See also </b><a href="qvectoriterator.html#operator-eq">operator=</a>().</p>
<!-- @@@ -->
</div>
</div>
</div>
</div>
</div>
</div>
<div class="footer">
<p>
<acronym title="Copyright">©</acronym> 2018 The Qt Company Ltd.
Documentation contributions included herein are the copyrights of
their respective owners.<br/> The documentation provided herein is licensed under the terms of the <a href="http://www.gnu.org/licenses/fdl.html">GNU Free Documentation License version 1.3</a> as published by the Free Software Foundation.<br/> 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. </p>
</div>
</body>
</html>