この回答に触発されて、次の例を試しました:
#include <map>
#include <string>
#include <iostream>
int main()
{
const std::map< int, std::string > mapping = {
1, "ONE",
2, "TWO",
};
const auto it = mapping.find( 1 );
if ( mapping.end() != it )
{
std::cout << it->second << std::endl;
}
else
{
std::cout << "not found!" << std::endl;
}
}
そしてコンパイルは次のエラーメッセージで失敗しました (g++ 4.6.1):
gh.cpp:11:5: error: could not convert '{1, "ONE", 2, "TWO"}' from '<brace-enclosed initializer list>' to 'const std::map<int, std::basic_string<char> >'
私はそれを修正する方法を知っています:
const std::map< int, std::string > mapping = {
{1, "ONE"},
{2, "TWO"},
};
しかし、上の例でコンパイルが失敗するのはなぜですか?