我是靠谱客的博主 无聊彩虹,最近开发中收集的这篇文章主要介绍【C++】字符串遍历的三种方式,觉得挺不错的,现在分享给大家,希望可以做个参考。

概述

(1)常规遍历——利用字符串的长度进行遍历

#include <iostream>
#include <string>
using namespace std;

void Traverse(string str)
{
    for (size_t i = 0; i < str.size(); i++)
    {
        cout << str[i] ;
    }
    cout << endl;
}

int main()
{
    Traverse("abcde");

    system("pause");
    return 0;
}


输出结果:abcde

(2)使用迭代器遍历——类似于容器的使用

#include <iostream>
#include <string>
using namespace std;

void Traverse(string str)
{
    //迭代器--在STL中,不破坏封装的情况下去访问容器
    string::iterator it = str.begin();
    while (it != str.end())
    {
        cout << *it;
        it++;
    }
    cout << endl;
}

int main()
{
    Traverse("abcde");

    system("pause");
    return 0;
}


输出结果:abcde

(3)利用 for 循环,较新颖——此方法来源c++11

#include <iostream>
#include <string>
using namespace std;

void Traverse(string str)
{
    for (auto ch : str)         //ch依次取的是str里面的字符,直到取完为止
    {
        cout << ch;
    }
    cout << endl;
}

int main()
{
    Traverse("abcde");

    system("pause");
    return 0;
}


输出结果:abcde

最后

以上就是无聊彩虹为你收集整理的【C++】字符串遍历的三种方式的全部内容,希望文章能够帮你解决【C++】字符串遍历的三种方式所遇到的程序开发问题。

如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(49)

评论列表共有 0 条评论

立即
投稿
返回
顶部