int main()
{
multimap<string, string> m{
{"yiyi","nihao"},
{"gcl","hello"},
{"gcl","world"}
};
map<string, multiset<string>> order_m;//1.why order_m can't be multimap
for (const auto author : m)
order_m[author.first].insert(author.second);
for (const auto author : order_m)
{
cout << author.first << " : ";
for (const auto work : author.second)//2.why i can't use order_m.second
cout << work << " "<<endl;
}
system("pause");
return 0;
}
这段代码定义一个作者及其作品的multimap,并使它按字典序打印作者列表和他们的作品。功能的确实现了,但是有两个问题(在代码中有标注)。
1.为什么使用multimap定义order_m 的时候 下一行for循环遍历的时候不能使用下标运算符,显示无法匹配相应元素。
2.为什么在for循环遍历中可以使用author.second,却不能使用order_m.second,编译器会提示order_m并没有元素second,可是author不是只是order_m的别名而已吗?