Maison > Questions et réponses > le corps du texte
map<string, int>::key_type v1;//v1 string
map<string, int>::value_type v2;//v2 pair<const string,int>
为何后者的key_type 是const?而 mapped_type 又不是const?
大家讲道理2017-04-17 13:00:11
因为你没办法对一个已经添加进Map当中的K/V对的键进行更改,只能对值进行更改。
如果要对键进行更改,只能删掉这个,然后再添加一个新的。