首页 > 编程语言 > 详细

C++中string的访问方式

时间:2019-04-11 22:41:51      阅读:159      评论:0      收藏:0      [点我收藏+]

1.operator[]

函数原型:

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

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

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

 

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 << \n;
  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.

C++中string的访问方式

原文:https://www.cnblogs.com/jainszhang/p/10692965.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!