首頁 > 問答 > 主體
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對的鍵進行更改,只能對值進行更改。 如果要對鍵進行更改,只能刪掉這個,然後再增加一個新的。
首頁
課程
問答
我的