BZ易风

导航

 

存取字符串

  • char& operator[](int n);//通过[]方式取字符
  • char& at(int n);//通过at方法获取字符
#define _CRT_SECURE_NO_WARNINGS
#include <iostream>
using namespace std;
#include <string>

/*
存取字符串
char& operator[](int n);//通过[]方式取字符
char& at(int n);//通过at方法获取字符

*/
void test01()
{
    string s = "hello world";
    for (int i = 0; i < s.size(); i++)
    {
        //cout << s[i] << endl;   //char& operator[](int n);
        cout << s.at(i) << endl;//char& at(int n)
    }
}

int main()
{
    test01();
    system("Pause");
    return 0;
}

结果:

访问结果一样,但是还是有区别

[]和at区别

  • []访问越界,直接挂掉
  • at会抛出异常

结果:

 

而at访问

 

结果:

 

posted on 2021-08-26 10:56  BZ易风  阅读(136)  评论(0编辑  收藏  举报