我在不同的编译器上编译了以下程序,并得到不同的行为,
资源 :
#include <iostream>
#include <sstream>
#include <unordered_map>
using namespace std ;
std::unordered_map<std::string,std::string> mymap;
std::unordered_multimap<std::string,std::string> mymultimap;
int main ()
{
DoAddItem() ;
std::cout << "mymap contains:";
for ( auto it = mymap.begin(); it != mymap.end(); ++it )
std::cout << " " << it->first << ":" << it->second;
std::cout << std::endl;
std::cout << "============================================" << std::endl ;
std::cout << "mymultimap contains:";
for ( auto it2 = mymultimap.begin(); it2 != mymultimap.end(); ++it2 )
std::cout << " " << it2->first << ":" << it2->second;
std::cout << std::endl;
return 0;
}
void DoAddItem()
{
std::pair<std::string,std::string> mypair[100];
int idx ;
std::string s1 ;
std::string s2 ;
for(idx=0;idx<10;idx++)
{
s1 = string("key") + int2str(idx) ;
s2 = string("val") + int2str(idx) ;
mypair[idx] = {s1,s2} ;
mymap.insert(mypair[idx]) ;
mymultimap.insert(mypair[idx]) ;
}//for
return ;
}
在 RedHat Linux 中以 g++ 4.4.6 编译,如:
g++ --std=c++0x unordered_map1.cpp -o unordered_map1.exe
将得到 mymap 和 mymultimap 的正确答案,但在 MinGw 中:http: //sourceforge.net/projects/mingwbuilds/ ?source=dlp
编译如下:
g++ -std=gnu++11 unordered_map1.cpp -o unordered_map1.exe
这一次,mymap 还是得到了正确的答案,但是 mymultimap 都是空的,MinGw g++ 版本是
g++(rev1,由 MinGW-builds 项目构建)4.8.1
我对 c++11 很感兴趣,所以我在我的 winx、g++ 4.4.6、我的开发编译器中下载了 MinGw 编译器,无法编译 c++11 进行测试。
我错过了什么?我的目标是测试 c++11,欢迎提出任何建议!
编辑 :
mymultimap.insert(mypair[idx]) ; //won't work !!
mymultimap.insert(make_pair(s1,s2)) ; //This work !!
在我将代码更改为 make_pair 后,它可以在 MinGw 中运行并为 mymultimap 打印正确的答案 ....这对我来说很奇怪~~