最佳答案
c++ 11基于范围的for()循环的常见示例总是这样简单:
std::vector<int> numbers = { 1, 2, 3, 4, 5, 6, 7 };
for ( auto xyz : numbers )
{
std::cout << xyz << std::endl;
}
在这种情况下,xyz
是int
。但是,当我们有地图之类的东西时会发生什么呢?本例中变量的类型是什么:
std::map< foo, bar > testing = { /*...blah...*/ };
for ( auto abc : testing )
{
std::cout << abc << std::endl; // ? should this give a foo? a bar?
std::cout << abc->first << std::endl; // ? or is abc an iterator?
}
当要遍历的容器很简单时,看起来基于范围的for()循环会给我们每个项,而不是迭代器。这很好…如果它是迭代器,我们总是要做的第一件事就是解引用它。
但是当涉及到像地图和multimaps这样的东西时,我很困惑。
(我还在g++ 4.4,而基于范围的循环在g++ 4.6+,所以我还没有机会尝试它。)