C++ map修改指定key的value


  對於修改C++指定key的value,網上查了很多,都說直接insert就會覆蓋原來的值,是否是這樣的呢

 C++ Code 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
 
// mapmodifykey.cpp : Defines the entry point for the console application.
//

#include "stdafx.h"
#include <iostream>
#include <map>
#include <string>

using namespace std;


int _tmain(int argc, _TCHAR* argv[])
{
    map<string, 
int> m_map;
    m_map.insert(make_pair(
"Michael Jordan"23));
    m_map.insert(make_pair(
"Kobe Bryant"8));
    m_map.insert(make_pair(
"James Harden"13));
    m_map.insert(make_pair(
"Chris Paul"3));
    map<string, 
int>::const_iterator iteMap = m_map.begin();
    cout << 
"==============舊值=============" << endl;
    
for(; iteMap != m_map.end(); ++ iteMap)
    {
        cout << iteMap->first;
        cout << 
":";
        cout << iteMap->second << endl;
    }
    m_map.insert(make_pair(
"Kobe Bryant"24));
    
//m_map["Kobe Bryant"] = 24;
    iteMap = m_map.begin();
    cout << 
"==============新值=============" << endl;
    
for(; iteMap != m_map.end(); ++ iteMap)
    {
        cout << iteMap->first;
        cout << 
":";
        cout << iteMap->second << endl;
    }
    
return 0;
}

  看了半天,似乎並沒有把key為Kobe Bryant的value修改為24,還是之前的值8。通過insert操作修改map指定key的value是不行的,正確的做法是這樣的:

 C++ Code 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
 
// mapmodifykey.cpp : Defines the entry point for the console application.
//

#include "stdafx.h"
#include <iostream>
#include <map>
#include <string>

using namespace std;


int _tmain(int argc, _TCHAR* argv[])
{
    map<string, 
int> m_map;
    m_map.insert(make_pair(
"Michael Jordan"23));
    m_map.insert(make_pair(
"Kobe Bryant"8));
    m_map.insert(make_pair(
"James Harden"13));
    m_map.insert(make_pair(
"Chris Paul"3));
    map<string, 
int>::const_iterator iteMap = m_map.begin();
    cout << 
"==============舊值=============" << endl;
    
for(; iteMap != m_map.end(); ++ iteMap)
    {
        cout << iteMap->first;
        cout << 
":";
        cout << iteMap->second << endl;
    }

    
//m_map.insert(make_pair("Kobe Bryant", 24));
    m_map["Kobe Bryant"] = 24;
    iteMap = m_map.begin();
    cout << 
"==============新值=============" << endl;
    
for(; iteMap != m_map.end(); ++ iteMap)
    {
        cout << iteMap->first;
        cout << 
":";
        cout << iteMap->second << endl;
    }
    
return 0;
}


免責聲明!

本站轉載的文章為個人學習借鑒使用,本站對版權不負任何法律責任。如果侵犯了您的隱私權益,請聯系本站郵箱yoyou2525@163.com刪除。



 
粵ICP備18138465號   © 2018-2025 CODEPRJ.COM