小代码 map1导入map2 c++
更新:HHH   时间:2023-1-7


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

int main()
{
	map<string,string> ma;
	map<string,string> mb;
	ma["01"] = "wz";
	ma["02"] = "sust";
	map<string,string>::iterator it = ma.begin();
	for(;it != ma.end();++it)
	{
		cout<<it->first<<" "<<it->second<<endl;
		mb[it->first] = it->second;
	}

	map<string,string>::iterator it2 = mb.begin();
	for(;it2 != mb.end();++it2)
	{
		cout<<it2->first<<" "<<it2->second<<endl;
	}
	return 0;
}


返回编程语言教程...