【C++】STL的string容器介绍


目录

1、string容器

1.1声明一个c++字符串

1.2string和c字符数组的比较

1.3string类操作函数介绍

1.3.1赋值操作

1.3.2字符串拼接

1.3.3字符串查找

1.3.4字符串替换

1.3.5字符串比较

1.3.6字符存取

1.3.7字符串插入

1.3.8字符串删除

1.3.9子串获取


1、string容器

在c语言中,我们常使用char*的字符串,而在c++中,我们使用c++标准程序库中的string类,因为它和前者比较起来,不用担心内存是否足够、字符串长度等等,而且作为一个类出现,它集成的操作函数足以完成我们大多数情况下的需要。同时string类内部封装了很多成员函数,例如:查找find,拷贝copy,删除delete,替换replace,插入insert等等。

在我们编写的程序中使用string容器,需要包含头文件

#include <string>

string和char*的区别:

  • char*:是一个指针
  • string:是一个类,类内部封装了char*,管理这个字符串是一个char*型的容器

1.1声明一个c++字符串

声明一个字符串变量很简单: string str;

这样我们就声明了一个字符串变量,但既然是一个类,就有构造函数和析构函数。上面的声明没有传入参数,所以就直接使用了string的默认的构造函数,这个函数所作的就是把str初始化为一个空字符串。string类的构造函数和析构函数如下:

string();                      //创建一个空的字符串 例如: string str;
string(const char* s);         //使用字符串s初始化
string(const string& str);     //使用一个string对象初始化另一个string对象
string(int n, char c);         //使用n个字符c初始化 
~string();                     //销毁所有字符,释放内存

案例代码测试:
#include <iostream>
using namespace std;
#include <string>


int main(void)
{
    string str1; //创建空字符串,调用无参构造函数
    cout << "str1 = " << str1 << endl;

    //const char* str = "hello c++";
    //string s2(str); //把c_string转换成了string
    string str2("hello c++");
    cout << "str2 = " << str2 << endl;
    
    string str3(str2); //调用拷贝构造函数
    cout << "str3 = " << str3 << endl;
    
    string str4(10, 'c');
    cout << "str4 = " << str4 << endl;

    return 0;
}

1.2string和c字符数组的比较

string串要取得其中某一个字符,和传统的C字符串一样,可以用s[i]的方式取得。比较不一样的是如果s有三个字符,传统C的字符串的s[3]是’\0’字符,但是C++的string则是只到s[2]这个字符而已。

1、C风格字符串

  • 用”“括起来的字符串常量,C++中的字符串常量由编译器在末尾添加一个空字符;
  • 末尾添加了‘\0’的字符数组,C风格字符串的末尾必须有一个’\0’。

2、C字符数组及其与string串的区别

  • char ch[ ]={‘C’, ‘+’, ‘+’}; //末尾无NULL
  • char ch[ ]={‘C’, ‘+’, ‘+’, ‘\0’}; //末尾显式添加NULL
  • char ch[ ]=”C++”; //末尾自动添加NULL字符 若[ ]内数字大于实际字符数,将实际字符存入数组,其余位置全部为’\0’。

操作

string

字符数组

声明字符串

string str;

char str[1024];

获得第i个字符

str[i];

str[i];

字符串长度

str.length();str.size()

strlen(str);

读取一行

getline(cin,str);

gets(str);

设成某字符串

str="c++";

strcpy(str,"cyuyan");

字符串相加

str += "hello";

strcat(str,"hello");

字符串比较

str == "c++"

strcmp(str,"cyuyan");

...

...

...

1.3string类操作函数介绍

1.3.1赋值操作

功能描述:给string字符串进行赋值

string& operator=(const char* s);              //char*类型字符串 赋值给当前的字符串
string& operator=(const string &s);            //把字符串s赋给当前的字符串
string& operator=(char c);                     //字符赋值给当前的字符串
string& assign(const char *s);                 //把字符串s赋给当前的字符串
string& assign(const char *s, int n);          //把字符串s的前n个字符赋给当前的字符串
string& assign(const string &s);               //把字符串s赋给当前字符串
string& assign(int n, char c);                 //用n个字符c赋给当前字符串

案例代码测试:
int main(void)
{
    string str1;
    str1 = "hello c++";
    cout << "str1 = " << str1 << endl;

    string str2;
    str2 = str1;
    cout << "str2 = " << str2 << endl;

    string str3;
    str3 = 'a';
    cout << "str3 = " << str3 << endl;

    string str4;
    str4.assign("hello c++");
    cout << "str4 = " << str4 << endl;

    string str5;
    str5.assign("hello c++", 5);
    cout << "str5 = " << str5 << endl;

    string str6;
    str6.assign(str5);
    cout << "str6 = " << str6 << endl;

    string str7;
    str7.assign(5, 'c');
    cout << "str7 = " << str7 << endl;

    return 0;
}

1.3.2字符串拼接

功能描述:实现在字符串末尾拼接字符串

string& operator+=(const char c);               //重载+=操作符
string& operator+=(const string& str);          //重载+=操作符
string& append(const char *s);                  //把字符串s连接到当前字符串结尾
string& append(const char *s, int n);           //把字符串s的前n个字符连接到当前字符串结尾
string& append(const string &s);                //同operator+=(const string& str)
string& append(const string &s, int pos, int n);//字符串s中从pos开始的n个字符连接到字符串结尾

案例代码测试:
int main(void)
{
    string str1;
    str1 = "hello c++";
    cout << "str1 = " << str1 << endl;

    string str2;
    str2 = str1;
    cout << "str2 = " << str2 << endl;

    string str3;
    str3 = 'a';
    cout << "str3 = " << str3 << endl;

    string str4;
    str4.assign("hello c++");
    cout << "str4 = " << str4 << endl;

    string str5;
    str5.assign("hello c++", 5);
    cout << "str5 = " << str5 << endl;

    string str6;
    str6.assign(str5);
    cout << "str6 = " << str6 << endl;

    string str7;
    str7.assign(5, 'c');
    cout << "str7 = " << str7 << endl;

    return 0;
}

1.3.3字符串查找

功能描述:查找指定字符串是否存在

int find(const string& str, int pos = 0) const;         //查找str第一次出现位置,从pos开始查找
int find(const char* s, int pos = 0) const;             //查找s第一次出现位置,从pos开始查找
int find(const char* s, int pos, int n) const;          //从pos位置查找s的前n个字符第一次位置
int find(const char c, int pos = 0) const;              //查找字符c第一次出现位置
int rfind(const string& str, int pos = npos) const;     //查找str最后一次位置,从pos开始查找
int rfind(const char* s, int pos = npos) const;         //查找s最后一次出现位置,从pos开始查找
int rfind(const char* s, int pos, int n) const;         //从pos查找s的前n个字符最后一次位置
int rfind(const char c, int pos = 0) const;             //查找字符c最后一次出现位置

案例代码测试:
int main(void)
{
	string str1("sakura0908");
	string str2 = "0908";
	int ret = str1.find(str2, 0);
	if (ret == -1)
	{
		cout << "没有找到目标字符串" << endl;
	}
	else
	{
		cout << "[" << ret << "]" << "找到目标字符串" << endl;
	}
	ret = str1.find("sakura", 0);
	if (ret == -1)
	{
		cout << "没有找到目标字符串" << endl;
	}
	else
	{
		cout << "[" << ret << "]" << "找到目标字符串" << endl;
	}
	ret = str1.find("0908", 0, 1);
	if (ret == -1)
	{
		cout << "没有找到目标字符串" << endl;
	}
	else
	{
		cout << "[" << ret << "]" << "找到目标字符串" << endl;
	}
	ret = str1.find("s", 0);
	if (ret == -1)
	{
		cout << "没有找到目标字符串" << endl;
	}
	else
	{
		cout << "[" << ret << "]" << "找到目标字符串" << endl;
	}

	return 0;
}

而rfind和find的效果是差不多的,这里不提供测试代码,区别在于find查找是从左往右,rfind查找是从右往左

find函数找到字符串后返回查找的第一个字符位置,找不到则返回-1

1.3.4字符串替换

功能描述:在指定的位置替换字符串

string& replace(int pos, int n, const string& str);     //替换从pos开始n个字符为字符串str
string& replace(int pos, int n,const char* s);          //替换从pos开始的n个字符为字符串s

案例代码测试:
int main(void)
{
	string str1 = "sakrua0908";
	string str2 = "hello";
	str1.replace(6, 4, "hello");
	cout << "str1 = " << str1 << endl;
	str1.replace(6, 5, str2);
	cout << "str1 = " << str1 << endl;

	return 0;
}

replay在替换的时候,要指定从哪个位置起,多少个字符替换成什么样的字符串

1.3.5字符串比较

功能描述:字符串之间的比较

比较方式:字符串比较是按字符的ASCII码进行对比

= 返回   0

> 返回   1

< 返回  -1

int compare(const string &s) const;    //与字符串s比较
int compare(const char *s) const;      //与字符串s比较

案例代码测试:
int main(void)
{
	string s1 = "sakura0908";
	string s2 = "sakura";

	int ret = s1.compare(s2);
	if (ret == 0) 
	{
		cout << "s1 等于 s2" << endl;
	}
	else if (ret > 0)
	{
		cout << "s1 大于 s2" << endl;
	}
	else
	{
		cout << "s1 小于 s2" << endl;
	}

	return 0;
}

1.3.6字符存取

功能描述:单个字符存取

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

案例代码测试:
int main(void)
{
	string str = "hello c++";

	for (int i = 0; i < str.size(); i++)
	{
		cout << str[i] << " ";
	}
	cout << endl;

	for (int i = 0; i < str.size(); i++)
	{
		cout << str.at(i) << " ";
	}
	cout << endl;

	//字符修改
	str[0] = 'a';
	str.at(1) = 'a';
	cout << str << endl;

	return 0;
}

1.3.7字符串插入

功能描述:对string字符串进行插入字符操作

string& insert(int pos, const char* s);             //插入字符串
string& insert(int pos, const string& str);         //插入字符串
string& insert(int pos, int n, char c);             //在指定位置插入n个字符c

案例代码测试:
int main(void)
{
	string str1 = "hello";
	str1.insert(5, "c++");
	cout << str1 << endl;

	string str2 = "hello";
	str2.insert(0, 1, 'c');
	cout << str2 << endl;

	return 0;
}

1.3.8字符串删除

功能描述:对string字符串进行删除字符操作

string& erase(int pos, int n = npos);               //删除从Pos开始的n个字符 

案例代码测试:
int main(void)
{
	string str1("hello c++");
	str1.erase(6, 3);  //从6号位置开始3个字符
	cout << str1 << endl;

	return 0;
}

要记住:插入和删除的起始下标都是从0开始(利用数组的首元素下标为0记忆)

1.3.9子串获取

功能描述:从字符串中获取想要的子串

string substr(int pos = 0, int n = npos) const;   //返回由pos开始的n个字符组成的字符串

案例代码测试:
int main(void)
{
	string str = "sakura0908";
	string subStr = str.substr(1, 3);
	cout << "subStr = " << subStr << endl;

	string email = "sakura@163.com";
	int pos = email.find("@");
	string username = email.substr(0, pos);
	cout << "username: " << username << endl;

	return 0;
}

这里只提出部分string的操作函数,还有其函数重载版本和其他函数并没有提出,有兴趣的读取可以自行探索。

例如:clear()删除全部字符,size(),length()返回字符数量,capacity()返回重新分配之前的字符容量,reserve()保留一定量内存以容纳一定数量的字符,data()将内容以字符数组形式返回 无’\0’,begin() end()提供类似STL的迭代器支持,front()返回首元素,back()返回末尾元素等等

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:/a/28850.html

如若内容造成侵权/违法违规/事实不符,请联系我们进行投诉反馈qq邮箱809451989@qq.com,一经查实,立即删除!

相关文章

5、alibaba微服务nacos的引入和使用

1、项目中引入nacos 父项目中已经引入了spring-cloud-alibaba&#xff0c;这个里面就已经包含nacos依赖了&#xff0c;所以在子项目中引入nacos依赖不用添加版本信息 <dependencies><dependency><groupId>org.springframework.boot</groupId><arti…

商家中心之java商城 开源java电子商务Spring Cloud+Spring Boot+mybatis+MQ+VR全景+b2b2c

1. 涉及平台 平台管理、商家端&#xff08;PC端、手机端&#xff09;、买家平台&#xff08;H5/公众号、小程序、APP端&#xff08;IOS/Android&#xff09;、微服务平台&#xff08;业务服务&#xff09; 2. 核心架构 Spring Cloud、Spring Boot、Mybatis、Redis 3. 前端框架…

终极攻略!如何彻底防止Selenium被检测!

在使用Selenium进行爬虫时&#xff0c;许多朋友都会遇到各种反爬措施。 实际上&#xff0c;在绝大多数情况下&#xff0c;网站轻而易举地能够检测出你正在使用WebDriver而非标准浏览器。 本文将详细介绍如何有效防止检测的方法。 在一篇公众号文章《别去送死了。Selenium 与…

【微信支付】微信v3支付案例,SpringBoot集成IJPay实现微信v3支付

前言 这篇文章主要实现一下通过IJPay来实现微信v3支付案例&#xff0c;本篇文章使用的是JSAPI即小程序支付 IJPay码云仓库&#xff1a;https://gitee.com/javen205/IJPay/tree/dev IJPay官方文档&#xff1a;https://javen205.gitee.io/ijpay/ 准备工作 导入依赖 <depen…

Web网页端IM产品RainbowChat-Web的v5.0版已发布

一、关于RainbowChat-Web RainbowChat-Web是一套Web网页端IM系统&#xff0c;是RainbowChat的姊妹系统&#xff08;RainbowChat是一套基于开源IM聊天框架 MobileIMSDK(Github地址) 的产品级移动端IM系统&#xff09;。 ► 详细介绍&#xff1a;http://www.52im.net/thread-248…

【AI面试】损失函数(Loss),定义、考虑因素,和怎么来的

神经网络学习的方式,就是不断的试错。知道了错误,然后沿着错误的反方向(梯度方向)不断的优化,就能够不断的缩小与真实世界的差异。 此时,如何评价正确答案与错误答案,错误的有多么的离谱,就需要一个评价指标。这时候,损失和损失函数就运用而生。 开始之前,我们先做…

基于Java网络游戏公司官方平台设计实现(源码+lw+部署文档+讲解等)

博主介绍&#xff1a; ✌全网粉丝30W,csdn特邀作者、博客专家、CSDN新星计划导师、java领域优质创作者,博客之星、掘金/华为云/阿里云/InfoQ等平台优质作者、专注于Java技术领域和毕业项目实战 ✌ &#x1f345; 文末获取源码联系 &#x1f345; &#x1f447;&#x1f3fb; 精…

FastDFS高可用集群部署安装

1、环境信息&#xff1a; 服务器部署服务16.32.15.200Tracker(调度工作)、Storage(存储)、Nginx、Keepalived16.32.15.201Tracker(调度工作)、Storage(存储)、Nginx、Keepalived16.32.15.202以上两台的VIP地址 2、部署FastDFS 正常部署 FastDFS 此处省略,参考&#xff1a;Fa…

Vue中如何进行表格合并与拆分

Vue中如何进行表格合并与拆分 在Vue应用程序中&#xff0c;表格是一个非常常见的组件。有时候我们需要对表格进行合并或拆分来满足特定的需求。在本文中&#xff0c;我们将介绍如何在Vue中进行表格的合并和拆分。 如何进行表格合并&#xff1f; 表格合并是指将多行或多列的单…

可视化分析碳化硅产业,我国2022年碳化硅功率器件应用规模达近百亿元

碳化硅&#xff08;SiC&#xff09;&#xff0c;又叫金刚砂&#xff0c;它是第三代化合物的半导体原材料。在新能源市场行业发展的推动下&#xff0c;能源的高效率利用转化&#xff0c;带动了碳化硅&#xff08;SiC&#xff09;产业市场的快速发展。 下面我们来利用可视化图表…

如何选择接口测试工具?

目录 前言&#xff1a; 一、易用性 二、灵活性 三、可靠性 四、成本 如何正确选择接口测试工具 测试用例 接口测试数据 自动化测试 测试报告 总结 前言&#xff1a; 接口测试是一种重要的测试类型&#xff0c;常用于Web应用程序和服务的测试。选择一个合适的接口测…

浅析视频监控技术及AI发展趋势下的智能化视频技术应用

视频监控技术是指通过摄像机对指定区域进行实时视频直播、录制、传输、存储、管理和分析的技术系统。它可以用于监控各种场所&#xff0c;如校园、工厂、工地、工作场所、公共区域、交通工具等。视频监控技术主要涉及到以下几个部分&#xff1a; 1、摄像机 摄像机是视频监控技…

618来了!看图技术如何在物流管理系统大显身手!

导读 近日&#xff0c;随着电商“618”购物节的临近&#xff0c;各大商家纷纷推出各类补贴活动刺激消费者热情。下单后&#xff0c;消费者的心理活动如何呢&#xff1f;蹲点抢到优惠券&#xff0c;精打细算的凑单后&#xff0c;终于完成付款。焦急的等待待发货的小红点跳至待收…

Python3+Selenium2完整的自动化测试实现之旅(三):Selenium-webdriver提供的元素定位方法

目录 前言 前端技术名词解释 Selenium-webdriver定位元素 一、 通过id定位 二、通过name定位 三、通过class定位 四、 通过tag定位 五、 通过link定位 六、通过partial_link定位 七、 通过Xpath定位 八、通过CSS定位 总结 前言 本篇以实例介绍selenium下的webdriv…

Nautilus Chain测试网迎阶段性里程碑,模块化区块链拉开新序幕

Nautilus Chain 是目前行业内少有的真实实践的 Layer3 模块化链&#xff0c;该链曾在几个月前上线了测试网&#xff0c;并接受用户测试交互。该链目前正处于测试网阶段&#xff0c;并即将在不久上线主网&#xff0c;这也将是行业内首个正式上线的模块化区块链底层。 而在上个月…

Webpack+Babel手把手带你搭建开发环境(内附配置文件)

先简单介绍一下Webpack和Babel Webpack webpack工作就是打包&#xff0c;只要你安装的插件就可以打包一切&#xff0c;并且会自动解析依赖项&#xff0c;是前端的热门工具。Babel Ecmascript的代码一直在更新 但是浏览器的兼容却没有根上&#xff0c;babel就实现了利用服务端n…

使用dmhs veri手动比对ORACLE同步到DM数据

使用dmhs veri手动比对ORACLE同步到DM数据 veri介绍 在进行数据库数据的实时同步的时候&#xff0c;需要了解同步的结果是否正确&#xff0c;因此需要有数据对比工具进行数据的对比&#xff0c;并生成详细的对比报告&#xff0c;提供用户参考。对比工具仅仅生成报告&#xff…

Qt下面窗口嵌套,嵌套窗口中包含:QGraphicsView、QGraphicsScene、QGraphicsIte

Qt系列文章目录 文章目录 Qt系列文章目录前言一、嵌套窗口二、注意事项 前言 我们有一个主窗口mainwindow,需要向其中放入新的界面&#xff0c;你可以自己定义里面内容。 Qt的嵌套布局由QDockWidget完成&#xff0c;用Qt Creator拖界面得到的dock布置形式比较固定&#xff0c;…

人工智能(pytorch)搭建模型12-pytorch搭建BiGRU模型,利用正态分布数据训练该模型

大家好&#xff0c;我是微学AI&#xff0c;今天给大家介绍一下人工智能(pytorch)搭建模型12-pytorch搭建BiGRU模型&#xff0c;利用正态分布数据训练该模型。本文将介绍一种基于PyTorch的BiGRU模型应用项目。我们将首先解释BiGRU模型的原理&#xff0c;然后使用PyTorch搭建模型…

在Nginx服务器如何安装SSL证书

提示&#xff1a;文章写完后&#xff0c;目录可以自动生成&#xff0c;如何生成可参考右边的帮助文档 文章目录 前言提示&#xff1a;我用的是阿里云的产品&#xff0c;就以阿里云进行的&#xff1a; 一、下载SSL证书二、安装SSL证书 前言 提示&#xff1a;我用的是阿里云的产…