vote up 0 vote down star
1

I try to do the following:

QList<QString> a;
foreach(QString& s, a)
{
	s += "s";
}

Which looks like it should be legitimate but I end up with an error complaining that it cannot convert from 'const QString' to 'QString &'.
Why is the QT foreach iterating with a const reference?

flag

38% accept rate

4 Answers

vote up 3 vote down

or you can use

QList<QString> a;
BOOST_FOREACH(QString& s, a)
{
   s += "s";
}
link|flag
vote up 2 vote down

Maybe for your case:

namespace bl = boost::lambda;
std::for_each(a.begin(),a.end(),bl::_1 += "s");
link|flag
Using Boost Lambda is always good thing – blwy10 Oct 22 at 11:31
vote up 4 vote down

As explained on the Qt Generic Containers Documentation:

Qt automatically takes a copy of the container when it enters a foreach loop. If you modify the container as you are iterating, that won't affect the loop. (If you don't modify the container, the copy still takes place, but thanks to implicit sharing copying a container is very fast.) Similarly, declaring the variable to be a non-const reference, in order to modify the current item in the list will not work either.

It makes a copy because you might want to remove an item from the list or add items while you are looping for example. The downside is that your use case will not work. You will have to iterate over the list instead:

for (QList<QString>::iterator i = a.begin(); i != a.end(); ++i) { 
  (*i) += "s";
}

A little more typing, but not too much more.

link|flag
Minor nitpick: I prefer: for(QList<QString>::iterator i = a.begin(),end=a.end(); i != end; ...) – cheez Oct 21 at 15:21
vote up 1 vote down

I believe Qt's foreach takes a temporary copy of the original collection before iterating over it, therefore it wouldn't make any sense to have a non-const reference as modifying the temporary copy it would have no effect.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.