In the C++ Primer book, Chapter (3), there is the following for-loop that resets the elements in the vector to zero.
vector<int> ivec; //UPDATE: vector declaration
for (vector<int>::size_type ix = 0; ix ! = ivec.size(); ++ix)
ivec[ix] = 0;
Is the for-loop really assigning 0
values to the elements, or do we have to use the push_back
function?
So, is the following valid?
ivec[ix] = ix;
Thanks.
ivec[ix] =0
updates the value of existing element in the vector, whilepush_back
function adds new element to the vector!It is perfectly valid IF
ix < ivec.size()
.It would be even better if you use
iterator
, instead of index. Like this,Use of
iterator
with STL is idiomatic. Prefer iterator over index!