It's been a long time since we used STL so anyhelp would be appreciated. Not sure what we're doing wrong here... Given this, why does this code throw an error:
"you cannot assign to a variable that is const"

struct person
{
int age;
bool verified;
string name

bool operator< (person const &p)
{
return (age < p.age);
}

};

multiset<person> msPerson;
multiset<person>::iterator pIt;

// add some persons
while (adding people)
{
    Person p;
    p.name=getNextName();
    p.age=getNextAge();
    msPerson.insert(p);
}


pIt = msPerson.begin();
// try to verify
pIt->verified = true; <---- **error here....**
link|improve this question

58% accept rate
feedback

3 Answers

up vote 2 down vote accepted

They return a const iterator if the container is ordered. The idea is that if you change the content the container doesn't know and it cannot guarantee order. Vector does not, but map does.

If you're sure your update does not affect the sort order you can cast away the const-ness. As always proceed with caution if you do that.

link|improve this answer
That makes a lot of sense. This is sample code, but in real we're not changing anything that would impact order. May I ask what would be best form for a 'cast away'? – Gio Apr 26 '11 at 17:24
feedback

sets return read-only iterators. Other containers in stl do not (e.g. vector).

link|improve this answer
feedback

You should use

(*pIt).verified = true;

-> operator isn't defined for STL iterators.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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