当前位置:   article > 正文

【C++】遍历的三种常用方式:迭代器、范围for、下标+[]_c++ 遍历

c++ 遍历

常用的简单遍历的三种方式

在这里插入图片描述

迭代器

注意迭代器区间是左闭右开的

string s1 = { "hello world!" };
cout << "1.迭代器遍历数组:" << endl;
string::iterator it = s1.begin();
while (it != s1.end())
{
	cout << *it;
	++it;
}
cout << endl;
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9

范围for

范围for底层其实就是迭代器,本质是一样的,只是进行了替换。
范围for虽然遍历,但是有缺点,就是只能正向遍历。

这里是引用

string s1 = { "hello world!" };
cout << "2.范围for遍历数组:" << endl;
for (auto z : s1)
{
	cout << z;
}
cout << endl;
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7

范围for的三种方式:

  • for(auto &a : b):循环体中修改a,b也会被修改
  • for(auto a : b):循环体中修改a,b不会被修改
  • for(const auto &a : b):循环体中不可修改a,b当然也不会被修改

下标+[]

string s1 = { "hello world!" };
cout << "3.下标+[]遍历数组:" << endl;
for (int i = 0; i < s1.length(); ++i)
{
	cout << s1[i];
}
cout << endl;
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/很楠不爱3/article/detail/398951
推荐阅读
相关标签
  

闽ICP备14008679号