C++ string 类详解

        </h1><div class="clear"></div><div class="postBody">

  字符串是存储在内存的连续字节中的一系列字符。C++ 处理字符串的方式有两种,一种来自 C 语言,常被称为 C-风格字符串,另一种是基于 string 类库的字符串处理方式。C 风格字符串的处理可以参考 https://www.cnblogs.com/tongye/p/10688941.html ,本文着重介绍 string 类库的使用。

一、string 类简介

  C++ 中提供了专门的头文件 string(注意不是 string.h,这个是 C 风格字符串相关函数的头文件),来支持 string 类型。string 类定义隐藏了字符串的数组性质,让我们可以像处理普通变量那样处理字符串。string 对象和字符数组之间的主要区别是:可以将 string 对象声明为简单变量,而不是数组

1.1 string 类几种常见的构造函数:

1)string(const char *s) :将 string 对象初始化为 s 指向的字符串

string str("Hello!");

2)string(size_type n,char c) :创建一个包含 n 个元素的 string 对象,其中每个元素都被初始化为字符 c

string str(10,'a');

3)string(const string &str) :将一个 string 对象初始化为 string 对象 str(复制构造函数)

string str1("hello!");
string str2(str1);

4)string() :创建一个默认的 string 对象,长度为 0(默认构造函数)

string str;     // 创建一个空的 string 对象

  string 类的设计允许程序自动处理 string 的大小,因此,上述代码创建了一个长度为 0 的string 对象,但是向 str 中写入数据时,程序会自动调整 str 的长度。因此,与使用数组相比,使用 string 对象更方便,也更安全。

1.2 用 C 语言风格初始化 string 对象:

  C++ 允许使用 C 语言风格来初始化 string 对象:

string str = "hello!";

二、获取 string 对象的长度

  在 C 语言中,使用 strlen 函数获取字符串的长度。在 C++ 中,可以使用 string.size() 函数或 string.length() 函数来获得 string 对象的长度。在 C++ 标准库中,两者的源代码如下:

  size_type   __CLR_OR_THIS_CALL   length()   const   { //   return   length   of   sequence   return   (_Mysize);   }

size_type __CLR_OR_THIS_CALL size() const
{ // return length of sequence
return (_Mysize);
}

  可见,这两个方法是完全一样的,并没有区别。length() 方法是 C 语言习惯保留的,size() 方法则是为了兼容 STL 容器而引入的。

string str("Hello,World!");
int strLen1 = str.length();
int strLen2 = str.size();

三、复制 string 对象

  在 C 语言中,使用 strcpy、strncpy 函数来实现字符串的复制。在 C++ 中则方便很多,可以直接将一个 string 对象赋值给另一个 string 对象,即:

string str1("Hello,World!");
string str2;
str2 = str1;

  由于 string 类会自动调整对象的大小,因此不需要担心目标数组不够大的问题。

四、string 对象的拼接和附加

  在 C 语言中,使用 strcat、strncat 函数来进行字符串拼接操作。在 C++ 中也有多种方法来实现字符串拼接和附加操作:

4.1 使用 + 操作符拼接两个字符串

string str1("hello ");
string str2("world!");
string str3 = str1 + str2;

4.1 使用 += 操作符在字符串后面附加内容

  可以使用 += 来在一个 string 对象后面附加一个 string 对象、字符以及 C 风格的字符串:

string str1("hello ");
string str2("world!\n");
str1 += str2;
str1 += "nice job\n";
str1 += 'a';

4.2 使用 string.append() 函数

  可以使用 string.append() 函数来在一个 string 对象后面附加一个 string 对象或 C 风格的字符串:

string str1 = "hello,world!";
string str2 = "HELLO,WORLD!";

str1.append(str2);
str1.append(“C string”);

4.3 使用 string.push_back() 函数

  可以使用 string.push_back() 函数来在一个 string 对象后面附加一个字符:

string str("Hello");
str.push_back('a');

五、string 对象的比较

  在 C 语言中,使用 strcmp、strncmp 函数来进行字符串的比较。在 C++ 中,由于将 string 对象声明为了简单变量,故而对字符串的比较操作十分简单了,直接使用关系运算符(==、!=、<、<=、>、>=)即可:

#include <string>
#include <iostream>

using namespace std;

int main()
{
string str1(“hello”);
string str2(“hello”);

</span><span style="color: #0000ff;">if</span> (str1 ==<span style="color: #000000;"> str2)cout </span>&lt;&lt; <span style="color: #800000;">"</span><span style="color: #800000;">str1 = str2</span><span style="color: #800000;">"</span> &lt;&lt;<span style="color: #000000;"> endl;
</span><span style="color: #0000ff;">else</span> <span style="color: #0000ff;">if</span> (str1 &lt;<span style="color: #000000;"> str2)cout </span>&lt;&lt; <span style="color: #800000;">"</span><span style="color: #800000;">str1 &lt; str2</span><span style="color: #800000;">"</span> &lt;&lt;<span style="color: #000000;"> endl;
</span><span style="color: #0000ff;">else</span><span style="color: #000000;">cout </span>&lt;&lt; <span style="color: #800000;">"</span><span style="color: #800000;">str1 &gt; str2</span><span style="color: #800000;">"</span> &lt;&lt;<span style="color: #000000;"> endl;</span><span style="color: #0000ff;">return</span> <span style="color: #800080;">0</span><span style="color: #000000;">;

}

  当然,也可以使用类似 strcmp 的函数来进行 string 对象的比较,string 类提供的是 string.compare() 方法,函数原型如下:

int compare(const string&str) const;

int compare(size_t pos,size_t len,const string&str)const;    // 参数 pos 为比较字符串中第一个字符的位置,len 为比较字符串的长度

int compare(size_t pos,size_t len,const string&str, size_t subpos,size_t sublen)const;

int compare(const char * s)const;

int compare(size_t pos,size_t len,const char * s)const;

int compare(size_t pos,size_t len,const char * s,size_t n)const;

  compare 方法的返回值如下:

1)返回 0,表示相等;

2)返回结果小于 0,表示比较字符串中第一个不匹配的字符比源字符串小,或者所有字符都匹配但是比较字符串比源字符串短;

3)返回结果大于 0,表示比较字符串中第一个不匹配的字符比源字符串大,或者所有字符都匹配但是比较字符串比源字符串长。

六、使用 string.substr() 函数来获取子串

  可以使用 string.substr() 函数来获取子串,string.substr() 函数的定义如下:

string substr(size_t pos = 0,size_t len = npos)const;

  其中,pos 是子字符串的起始位置(索引,第一个字符的索引为 0),len 是子串的长度。这个函数的功能是:复制一个 string 对象中从 pos 处开始的 len 个字符到 string 对象 substr 中去,并返回 substr。

string str("Hello,World!");
string subStr = str.substr(3,5);
cout << subStr << endl;

  这段代码的输出结果为:"lo,Wo"。

七、访问 string 字符串的元素 

  可以像 C 语言中一样,将 string 对象当做一个数组,然后使用数组下标的方式来访问字符串中的元素;也可以使用 string.at(index) 的方式来访问元素(索引号从 0 开始):

string str("Hello,World!");
cout << str[1] << endl;      // 使用数组下标的方式访问 string 字符串的元素
cout << str.at(1) << endl;     // 使用 at 索引访问 string 字符串的元素

八、string 对象的查找操作

8.1 使用 string.find() 方法查找字符

  find 方法的函数原型如下:

1)从字符串的 pos 位置开始(若不指定 pos 的值,则默认从索引 0 处开始),查找子字符串 str。如果找到,则返回该子字符串首次出现时其首字符的索引;否则,返回 string::npos:

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

2)从字符串的 pos 位置开始(若不指定 pos 的值,则默认从索引 0 处开始),查找子字符串 s。如果找到,则返回该子字符串首次出现时其首字符的索引;否则,返回 string::npos:  

size_type find (const char *s, size_type pos = 0) const;

3)从字符串的 pos 位置开始(若不指定 pos 的值,则默认从索引 0 处开始),查找 s 的前 n 个字符组成的子字符串。如果找到,则返回该子字符串首次出现时其首字符的索引;否则,返回 string::npos:

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

4)从字符串的 pos 位置开始(若不指定 pos 的值,则默认从索引 0 处开始),查找字符 ch 。如果找到,则返回该字符首次出现的位置;否则,返回 string::npos:

size_type find (char ch, size_type pos = 0) const;

  举个查找子字符串的例子(查找字符的代码与这一样,只需要将 find 函数的参数换成字符即可):

#include <string>
#include <iostream>

using namespace std;

int main()
{
string str(“cat,dog,cat,pig,little cat,hotdog,little pig,angry dog”);
size_t catPos = str.find(“cat”,0);

</span><span style="color: #0000ff;">if</span> (catPos == <span style="color: #0000ff;">string</span><span style="color: #000000;">::npos) {printf(</span><span style="color: #800000;">"</span><span style="color: #800000;">没有找到字符串\n</span><span style="color: #800000;">"</span><span style="color: #000000;">);</span><span style="color: #0000ff;">return</span> <span style="color: #800080;">0</span><span style="color: #000000;">;
}</span><span style="color: #0000ff;">while</span> (catPos != <span style="color: #0000ff;">string</span><span style="color: #000000;">::npos) {cout </span>&lt;&lt; <span style="color: #800000;">"</span><span style="color: #800000;">在索引 </span><span style="color: #800000;">"</span> &lt;&lt; catPos &lt;&lt; <span style="color: #800000;">"</span><span style="color: #800000;"> 处找到字符串</span><span style="color: #800000;">"</span> &lt;&lt;<span style="color: #000000;"> endl;catPos </span>= str.find(<span style="color: #800000;">"</span><span style="color: #800000;">cat</span><span style="color: #800000;">"</span>, catPos + <span style="color: #800080;">1</span><span style="color: #000000;">);
}
</span><span style="color: #0000ff;">return</span> <span style="color: #800080;">0</span><span style="color: #000000;">;

}

  程序输出结果如下:

  

8.2 string.rfind()

  string.rfind() 与 string.find() 方法类似,只是查找顺序不一样, string.rfind() 是从指定位置 pos (默认为字符串末尾)开始向前查找,直到字符串的首部,并返回第一次查找到匹配项时匹配项首字符的索引。换句话说,就是查找子字符串或字符最后一次出现的位置。还是以上面的程序为例,稍作修改:

#include <string>
#include <iostream>

using namespace std;

int main()
{
string str(“cat,dog,cat,pig,little cat,hotdog,little pig,angry dog”);
size_t catPos = str.rfind(“cat”,str.length()-1);

</span><span style="color: #0000ff;">if</span> (catPos == <span style="color: #0000ff;">string</span><span style="color: #000000;">::npos) {printf(</span><span style="color: #800000;">"</span><span style="color: #800000;">没有找到字符串\n</span><span style="color: #800000;">"</span><span style="color: #000000;">);</span><span style="color: #0000ff;">return</span> <span style="color: #800080;">0</span><span style="color: #000000;">;
}</span><span style="color: #0000ff;">while</span> (catPos != <span style="color: #0000ff;">string</span><span style="color: #000000;">::npos) {cout </span>&lt;&lt; <span style="color: #800000;">"</span><span style="color: #800000;">在索引 </span><span style="color: #800000;">"</span> &lt;&lt; catPos &lt;&lt; <span style="color: #800000;">"</span><span style="color: #800000;"> 处找到字符串</span><span style="color: #800000;">"</span> &lt;&lt;<span style="color: #000000;"> endl;catPos </span>= str.rfind(<span style="color: #800000;">"</span><span style="color: #800000;">cat</span><span style="color: #800000;">"</span>, catPos - <span style="color: #800080;">1</span><span style="color: #000000;">);</span><span style="color: #0000ff;">if</span> (catPos == <span style="color: #800080;">0</span><span style="color: #000000;">) {cout </span>&lt;&lt; <span style="color: #800000;">"</span><span style="color: #800000;">在索引 </span><span style="color: #800000;">"</span> &lt;&lt; catPos &lt;&lt; <span style="color: #800000;">"</span><span style="color: #800000;"> 处找到字符串</span><span style="color: #800000;">"</span> &lt;&lt;<span style="color: #000000;"> endl;</span><span style="color: #0000ff;">break</span><span style="color: #000000;">;}
}
</span><span style="color: #0000ff;">return</span> <span style="color: #800080;">0</span><span style="color: #000000;">;

}

  程序输出结果如下:

  可以看到,rfind 方法是从字符串末开始查找的。

8.3 string.find_first_of()

  string.find_first_of() 方法在字符串中从指定位置开始向后(默认为索引 0 处)查找参数中任何一个字符首次出现的位置。举个例子说明:

#include <string>
#include <iostream>

using namespace std;

int main()
{
string str(“cat,dog,cat,pig,little cat,hotdog,little pig,angry dog”);
size_t pos = str.find_first_of(“zywfgat”);

</span><span style="color: #0000ff;">if</span> (pos == <span style="color: #0000ff;">string</span><span style="color: #000000;">::npos) {printf(</span><span style="color: #800000;">"</span><span style="color: #800000;">没有匹配到\n</span><span style="color: #800000;">"</span><span style="color: #000000;">);</span><span style="color: #0000ff;">return</span> <span style="color: #800080;">0</span><span style="color: #000000;">;
}
</span><span style="color: #0000ff;">else</span><span style="color: #000000;">cout </span>&lt;&lt; <span style="color: #800000;">"</span><span style="color: #800000;">在索引 </span><span style="color: #800000;">"</span> &lt;&lt; pos &lt;&lt; <span style="color: #800000;">"</span><span style="color: #800000;"> 处匹配到</span><span style="color: #800000;">"</span> &lt;&lt;<span style="color: #000000;"> endl;</span><span style="color: #0000ff;">return</span> <span style="color: #800080;">0</span><span style="color: #000000;">;

}

  程序输出结果是:在索引 1 处匹配到。所查找的字符串 zywfgat 中,第一次出现在字符串 str 中的字符是 'a',该字符在 str 中的索引是 1.

8.4 string.find_last_of()

  string.find_last_of() 方法在字符串中查找参数中任何一个字符最后一次出现的位置(也就是从指定位置开始往前查找,第一个出现的位置)。

8.5 string.find_first_not_of()

  string.find_first_not_of() 方法在字符串中查找第一个不包含在参数中的字符。

8.6 string.find_last_not_of()

  string.find_last_not_of() 方法在字符串中查找最后一个不包含在参数中的字符(从指定位置开始往前查找,第一个不包含在参数中的字符)。

九、string 对象的插入和删除操作

9.1 使用 string.insert() 进行插入操作

  函数原型如下:

string&insert(size_t pos,const string&str);   // 在位置 pos 处插入字符串 str

string&insert(size_t pos,const string&str,size_t subpos,size_t sublen); // 在位置 pos 处插入字符串 str 的从位置 subpos 处开始的 sublen 个字符

string&insert(size_t pos,const char * s);    // 在位置 pos 处插入字符串 s

string&insert(size_t pos,const char * s,size_t n); // 在位置 pos 处插入字符串 s 的前 n 个字符

string&insert(size_t pos,size_t n,char c);      // 在位置 pos 处插入 n 个字符 c

iterator insert (const_iterator p, size_t n, char c); // 在 p 处插入 n 个字符 c,并返回插入后迭代器的位置

iterator insert (const_iterator p, char c);       // 在 p 处插入字符 c,并返回插入后迭代器的位置

  举个例子:

#include <string>
#include <iostream>

using namespace std;

int main()
{
string str(“abcdefgh”);
str.insert(1,“INSERT”); // 在位置 1 处插入字符串 “INSERT”
cout << str << endl;

str.insert(</span><span style="color: #800080;">10</span>, <span style="color: #800080;">5</span>, <span style="color: #800000;">'</span><span style="color: #800000;">A</span><span style="color: #800000;">'</span>);        <span style="color: #008000;">//</span><span style="color: #008000;"> 在位置 10 处插入 5 个字符 'A'</span>
cout &lt;&lt; str &lt;&lt;<span style="color: #000000;"> endl;
</span><span style="color: #0000ff;">return</span> <span style="color: #800080;">0</span><span style="color: #000000;">;

}

  输出结果如下:

9.2 使用 string.erase() 进行元素删除操作

  函数原型如下:

string& erase (size_t pos = 0, size_t len = npos);   // 删除从 pos 处开始的 n 个字符

iterator erase (const_iterator p);            // 删除 p 处的一个字符,并返回删除后迭代器的位置

iterator erase (const_iterator first, const_iterator last); // 删除从 first 到 last 之间的字符,并返回删除后迭代器的位置

  举个例子:

#include <string>
#include <iostream>

using namespace std;

int main()
{
string str(“Hello,World!”);
str.erase(5,6); // 删除从索引位置 5 开始的 6 个字符
cout << “str 为:” << str << endl;

</span><span style="color: #0000ff;">return</span> <span style="color: #800080;">0</span><span style="color: #000000;">;

}

  关于 erase() 函数的用法可以参考 https://www.cnblogs.com/liyazhou/archive/2010/02/07/1665421.html

十、string 对象的一些其他操作

10.1 使用 getline() 函数来获取 string 输入

string str;

getline(cin,str); // 从输入流中读取一行数据到 str

10.2 使用 empty() 函数判断字符串是否为空

string str;

if(str.empty()){
cout << “字符串为空” << endl;
}

  string.empty() 函数,若字符串为空,则返回真,否则返回假。

10.3 使用 swap 函数交换两个字符串

#include <string>
#include <iostream>

using namespace std;

int main()
{
string str1 = “hello,world!”;
string str2 = “HELLO,WORLD!”;

str1.swap(str2);cout </span>&lt;&lt; str1 &lt;&lt;<span style="color: #000000;"> endl;
cout </span>&lt;&lt; str2 &lt;&lt;<span style="color: #000000;"> endl;</span><span style="color: #0000ff;">return</span> <span style="color: #800080;">0</span><span style="color: #000000;">;

}

参考资料:

C++ Primer Plus(第六版)

标签: C++
<div id="blog_post_info">
好文要顶 关注我 收藏该文

tongye
关注 - 22
粉丝 - 26

+加关注
0
0
<div class="clear"></div>
<div id="post_next_prev"><a href="https://www.cnblogs.com/tongye/p/9713259.html" class="p_n_p_prefix">« </a> 上一篇:    <a href="https://www.cnblogs.com/tongye/p/9713259.html" title="发布于 2019-04-23 00:31">基本数据结构 -- 链表的遍历、查找、插入和删除</a>
<br>
<a href="https://www.cnblogs.com/tongye/p/10665771.html" class="p_n_p_prefix">» </a> 下一篇:    <a href="https://www.cnblogs.com/tongye/p/10665771.html" title="发布于 2019-04-27 00:55">Shell 基础 -- 流编辑器 sed 详解</a>
posted @ 2019-04-24 15:17  tongye  阅读(4370)  评论(0)  编辑  收藏

转载:c+string类详解相关推荐

  1. Java的java.lang.String类详解

    String类详解 String(字符串常量)概述 在API中是这样描述: String 类代表字符串.Java 程序中的所有字符串字面值(如 "abc" )都作为此类的实例实现. ...

  2. c++之string类详解

    一.包含头文件 要想使用标准C++中string类,必须要包含 #include <string>// 注意是<string>,不是<string.h>,带.h的是 ...

  3. String 类详解

    public final class String 继承自java.lang.Object类. 实现了接口: java.io.Serializable, Comparable<String> ...

  4. 【JAVA基础篇】String类详解

    昨天参加了一场机试,发现自己居然对String类的api不熟了,所以今天来总结一下(基于JDK1.8). 1.父类和实现的接口 没有父类,或者说父类是Object 接口:Serializable.Co ...

  5. 【JavaSE】String类详解含面试经典

    目录 一.初识String类 二.String类的常用方法 2.1 字符串的构造 2.2 String对象的比较 2.2.1 ==比较是否引用同一个对象 2.2.2 boolean equals(Ob ...

  6. string教程c语言,C++ string类详解

    C++ 大大增强了对字符串的支持,除了可以使用C风格的字符串,还可以使用内置的 string 类.string 类处理起字符串来会方便很多,完全可以代替C语言中的字符数组或字符串指针. string ...

  7. 对内置的String类详解.

    目录: 一.String字符串的储存原理 二.String类的构造方法 三.String类当中常用方法 四.[重点] StringBuffer 五.StringBuffer和StringBuilder ...

  8. thinkphp5 mysql uuid_ThinkPHP框架String类详解

    在PHP开发网站的时候,使用ThinkPHP框架可以大大提高我们的开发效率,ThinkPHP框架不仅把整个网站的骨架已经架构好了,还提供很丰富的类库.下面主要讲一下ThinkPHP框架里我们使用最多的 ...

  9. 常用类详解(一)包装类和String类详解

    一.包装类 包装类的分类 (Wrapper) 针对八种基本数据类型相应的引用类型--包装类 有了类的特点,就可以调用类中的方法. 基本数据类型 包装类 boolean Boolean char Cha ...

最新文章

  1. tensorflow学习笔记(二十五):ConfigProtoGPU
  2. 第三天2017/03/30(下午:二级指针的(输出)内存模型)
  3. OkHttp 3.x 源码解析之Interceptor 拦截器
  4. acwing199.余数之和(除法分块)
  5. 采集练习(五) php 获得chrome扩展 微度新标签页 下的云壁纸(主要是美女壁纸)
  6. 边框回归的损失函数_CVPR 2019:精确目标检测的不确定边界框回归
  7. Android 最火高速开发框架AndroidAnnotations使用具体解释
  8. 套料排版代码python_XSuperNEST全自动套料解决方案
  9. 模拟电子线路设计 实验报告
  10. js混淆还原工具_技术分享:几种常见的JavaScript混淆和反混淆工具分析实战【转】...
  11. 关于lua加密luac的有关问题
  12. glassfish基本使用
  13. 视频教程-大数据技术-大数据
  14. HAUT 1285: 军团再临【并查集*逆向思维】
  15. 磁盘显示数据错误循环冗余检查资料怎么寻回
  16. 淘宝教育视频加速观看(在淘宝教育上看学习视频,需要加速,在谷歌浏览器上安装视频加速插件)
  17. 计算机网络正常无法打开网页,电脑网络正常但是网页无法打开怎么样解决
  18. STM32 DSP库
  19. Gene Ontology 的GO注释的可视化
  20. VMware ESXI centos7虚机搭建详解(避坑必看)

热门文章

  1. 金蝶云星空操作手册_金蝶国际CFO林波谈云业务:金蝶云·星空预计今年可以实现盈利...
  2. Granular Computing(粒计算)
  3. 2007年分区联赛提高组之一 统计数字
  4. 混合牛奶pascal程序
  5. NOIP2016普及组第三题——海港
  6. Luogu P5244 [USACO2019Feb Platinum] Mowing Mischief (动态规划、决策单调性)
  7. php 正则表达式 ies,正则表达式模式修正符(/ies)
  8. Mysql在字符串类型的日期上加上10分钟并和如今的日期做比較
  9. redis6持久化主从复制
  10. 删除JavaScript对象中的元素