Re: std::map insert element issue
On Feb 5, 6:51 am, zs0723 <zs0...@gmail.com> wrote:
I need to changed the value of a key in std::map,
You can't change the value of a key without incurring undefined
behavior. The key determines where the element is stored in the
map; changing the key would imply changing where the element is
stored.
The only way to do this is to remove the element, modify the
key, and reinsert it.
i have written the following code :
#include <map>
#include <iostream>
#include <string>
using namespace std;
int main()
{
typedef map<string,string> TABLE;
typedef TABLE::iterator ITERATOR;
TABLE table;
table.insert(TABLE::value_type("zs","victor"));
if(table.insert(TABLE::value_type(s","xiao v")).second) // this
will failed , i can't overwirte the exist key's value
cout<<"insert success\n";
else
cout<<"insert failied\n";
This looks more like you're trying to change the value of the
mapped object, and not the key. Except that you're requesting
an explicit insertion of a new object.
// but use like array 's [] , it's ok
// table["zs"]="victor";
// table["zs"]="xiao v";
Of course. Are you surprised that two functions with different
names (operator[] and insert) have different semantics?
for(ITERATOR itr=table.begin();itr != table.end() ; ++itr)
{
cout<<itr->first <<":"<<itr->second;
cout<<endl;
}
cout<<std::endl;
}
My question is :
Why insert method can't overwrite the value of the existing
key.
Because that's the way it is specified. If it were specified to
change the mapping of an existing entry, of course, "insert"
would be a very, very poor name.
--
James Kanze (GABI Software) email:james.kanze@gmail.com
Conseils en informatique orient=E9e objet/
Beratung in objektorientierter Datenverarbeitung
9 place S=E9mard, 78210 St.-Cyr-l'=C9cole, France, +33 (0)1 30 23 00 34