map容器的插值方式和特别需要注意的区别:
stl map键都是唯一的,如果插入相同的key, mapObj.insert不会覆盖原来的键值,mapObj[]会覆盖键值。
需要不唯一的key用multimap。
set的insert插入会不会覆盖,没有区别。

测试代码:

#include <iostream> 
#include <map> 
#include <set> 
#include <utility> 
#include <string>
using namespace std;

int main()
{
	map<unsigned int, string> Student;
	//stl map键都是唯一的,如果插入相同的key, mapObj.insert不会覆盖原来的键值,mapObj[]会覆盖键值。
	// 需要不唯一的key用multimap。
	//下标键值插入
	Student[1] = "OQQ";
	//insert和pair插入
	Student.insert(pair<unsigned int, string>(1, "CJY"));
	//value_type插入
	Student.insert(map<unsigned int, string>::value_type(3, "LL"));
	//make_pair插入
	Student.insert(make_pair(4, "XX"));
	for (map<unsigned int, string>::iterator it = Student.begin(); it != Student.end(); it++)
	{
		cout<<(*it).first<<":"<<(*it).second<<endl;
	}

	// set的insert插入会不会覆盖,没有区别
	/*set<int> m_TestSet;
	m_TestSet.insert(1);
	m_TestSet.insert(1);*/

	system("pause");
	return 0;
};


Logo

权威|前沿|技术|干货|国内首个API全生命周期开发者社区

更多推荐