本文主要是介绍C++中map用Insert如果原来有值并不会覆盖,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
C++用Insert如果原来有值并不会覆盖,记得清空
或者直接用Map[key]=value来弄
#include<bits/stdc++.h>
using namespace std;
int main(){map<int,int>M;M[2]=3;M.insert({3,4});for(auto &x:M){cout<<x.first<<" "<<x.second<<endl;}M.insert({2,5});M.insert({3,4});M.insert({3,4});M.insert({3,6});for(auto &x:M){cout<<x.first<<" "<<x.second<<endl;}M[3]=8;for(auto &x:M){cout<<x.first<<" "<<x.second<<endl;}
}
输出
这篇关于C++中map用Insert如果原来有值并不会覆盖的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!