21xrx.com
2025-04-03 21:02:46 Thursday
文章检索 我的文章 写文章
C++头文件string包含的函数介绍
2023-07-05 01:48:41 深夜i     91     0
C++ 头文件 string 函数 介绍

C++的头文件string是一个非常重要的标准库头文件,里面包含了很多字符串处理的函数,是C++语言中进行字符串操作的核心。

下面介绍一下头文件string中比较常用的函数:

1. string::size_type size() const;

这个函数返回串的长度,也就是字符的个数。

2. char& operator[](size_type index);

这个函数可以直接访问字符串中的一个字符。

3. const char& operator[](size_type index) const;

这个函数也可以访问字符串中的一个字符,但它是只读的。

4. string& operator+=(const string& str);

这个函数用于将一个字符串连接到当前的字符串后面。

5. string& operator+=(const char* s);

这个函数用于将一个字符数组连接到当前的字符串后面。

6. int compare(const string& str) const;

这个函数用于比较当前字符串和另一个字符串,如果相等,返回0。 如果当前字符串小于另一个字符串,则返回负数。 如果当前字符串大于另一个字符串,则返回正数。

7. int compare(size_type pos, size_type len, const string& str) const;

这个函数用于从指定位置开始比较串和另一个字符串的指定子串。

8. string substr(size_type pos = 0, size_type len = npos) const;

这个函数用于返回从指定位置开始的子串。

9. size_type find(const string& str, size_type pos = 0) const;

这个函数用于在当前字符串中查找另一个字符串的第一次出现的位置。

10. size_type find(const char* s, size_type pos, size_type n) const;

这个函数用于在当前字符串中查找一个指定长度的子串的第一次出现位置。

以上就是头文件string中一些比较常用的函数,熟练掌握这些函数,对于C++语言中字符串操作是非常有帮助的。

  
  

评论区