C++ for循环的几种使用方法
普通的for循环for(int n = 0; n < 50; ++n)std::cout << n << '\n';用于容器的for循环for(auto it=list.begin(); it!=list.end(); ++it)cout << *it << '\n';简易for循环for each(auto...
·
- 普通的for循环
for(int n = 0; n < 50; ++n)
std::cout << n << '\n';
- 用于容器的for循环
for(auto it=list.begin(); it!=list.end(); ++it)
cout << *it << '\n';
- 简易for循环
for each(auto item in list)
cout << item << '\n';
- 升级版简易for循环
for ( auto item : list)
cout << item << '\n';
- 使用STL的for循环
// 其实是一个函数。将list的每个元素都放到最后一个参数(匿名函数)中处理
for_each(list.begin(),list.end(),[](string item)
{
cout << item << '\n';
})
更多推荐
已为社区贡献2条内容
所有评论(0)