• C++中string的访问方式


    1.operator[]

    函数原型:

    char& operator[] (size_t pos);
    const char& operator[] (size_t pos) const;

    函数作用:返回pos位置的字符的引用

    注:如果pos等于string对象的长度,则返回''字符

    2.at()

    函数原型:

    char& at (size_t pos);
    const char& at (size_t pos) const;

    函数作用:返回string对象pos位置的字符

    注:该函数自动检查pos位置是否是有效的位置(自动判断是否越界)

    3.front()

    函数原型:

    char& front();
    const char& front() const;

    作用:返回字符串首字符的引用

    不像迭代器begin,该函数只返回引用,且空字符串不会调用该函数

    Returns a reference to the first character of the string.
    Unlike member string::begin, which returns an iterator to this same character, this function returns a direct reference.
    This function shall not be called on empty strings.

    例子:

    // string::front
    #include <iostream>
    #include <string>
    
    int main ()
    {
      std::string str ("test string");
      str.front() = 'T';
      std::cout << str << '
    ';
      return 0;
    }
    输出:Test string

    4.back()

    函数原型:

    char& back();
    const char& back() const;

    函数作用:返回string对象最后一个字符的引用

    注:空字符串不会调用该函数

    Returns a reference to the last character of the string.
    This function shall not be called on empty strings.

  • 相关阅读:
    我用到的存储过程
    yii2图片处理扩展yii2-imagine的使用
    yii2——自定义widget
    YII2之 Scenario
    PHP获取某月天数
    docker版wordpress
    RBAC中 permission , role, rule 的理解
    mysql开启远程连接
    windows系统和ubuntu虚拟机之间文件共享——samba
    php生成随机字符串
  • 原文地址:https://www.cnblogs.com/jainszhang/p/10692965.html
Copyright © 2020-2023  润新知