【C++】常用容器-string容器

news2024/11/23 16:43:15

1.string基本概念

2.string构造函数

在这里插入图片描述
在这里插入图片描述

#include <iostream>
using namespace std;

//string容器
void test01()
{
	string s1;//创建空字符串,调用无参构造函数
	cout << "str1 = " << s1 << endl;//什么都不输出

	const char* str = "hello world";
	string s2(str); //c_string转换成了string

	cout << "str2 = " << s2 << endl;

	string s3(s2); //调用拷贝构造函数
	cout << "str3 = " << s3 << endl;

	string s4(10, 'a'); //使用n个字符c初始化
	cout << "str4 = " << s4 << endl;
}
//*************************************
int main() {

	test01();
	//test02();

	//**************************************
	system("pause");
	return 0;
}

在这里插入图片描述

3.string赋值操作

在这里插入图片描述

#include <iostream>
using namespace std;

void test01()
{
	string str1;
	str1 = "hello world";
	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, 'x');
	cout << "str7 = " << str7 << endl;
}
//*************************************
int main() {

	test01();
	//test02();

	//**************************************
	system("pause");
	return 0;
}

在这里插入图片描述

4.string字符串拼接

在这里插入图片描述

#include <iostream>
using namespace std;

//string字符串拼接
//函数原型:
// string& operator+=(const char* str);            //重载+=操作符
// 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个字符连接到字符串结尾
//********************************************************************************************

void test01()
{
	// string& operator+=(const char* str);   //重载+=操作符
	string str1 = "我";
	str1 += "爱陶子";
	cout << "str1 = " << str1 << endl;

	// string& operator+=(const char c);               //重载+=操作符
	str1 += '!';
	cout << "str1 = " << str1 << endl;

	// string& operator+=(const string& str);          //重载+=操作符
	string str2 = " Miss Tao!";
	str1 += str2;
	cout << "str1 = " << str1 << endl;

	// string& append(const char *s);                  //把字符串S连接到当前字符串结尾
	string str3 = "I";
	str3.append(" love ");
	cout << "str3 = " << str3 << endl;

	// string& append(const char *s,int n);            //把字符串S的前n个字符串连接到当前字符串结尾
	str3.append("Tao! taozi", 4);
	cout << "str3 = " << str3 << endl;

	// string& append(const string &s);                //同operator+=(const string& str)
	str3.append(str2);
	cout << "str3 = " << str3 << endl;

	// string& append(const string &s, int pos, int n);//字符串S中从pos开始的n个字符连接到字符串结尾
	str3.append(str2, 6, 4);
	cout << "str3 = " << str3 << endl;
}

int main() {

	test01();
	//test02();

	//**************************************
	system("pause");
	return 0;
}

在这里插入图片描述
在这里插入图片描述
不知道再查就好啦

5.string查找和替换

在这里插入图片描述

#include <iostream>
using namespace std;

//string字符串的查找和替换

//查找
void test01()
{
	string str1 = "abcdefgde";

	//find
	int pos = str1.find("de");

	if (pos == -1)
	{
		cout << "未找到" << endl;
	}
	else
	{
		cout << "pos = " << pos << endl;
	}

	//rfind
	pos = str1.rfind("de");
	cout << "pos = " << pos << endl;

	//find和rfind的区别
	//find从左往右查找   rfind从右往左查找
}

//替换
void test02()
{
	string str1 = "abcdefgde";
	str1.replace(1, 3, "1111"); //把第1到3位全部移除,将1111全部插入

	cout << "str1 = " << str1 << endl;
}

int main() {

	//test01();
	test02();

	//**************************************
	system("pause");
	return 0;
}

《查找》的结果
在这里插入图片描述
《替换》的结果在这里插入图片描述

6.string字符串比较

在这里插入图片描述

#include <iostream>
using namespace std;

//string字符串比较
void test01()
{
	string str1 = "hello";
	string str2 = "delao";

	int ret = str1.compare(str2);

	if (ret == 0)
	{
		cout << "str1等于str2" << endl;
	}
	else if (ret > 0)
	{
		cout << "str1大于str2" << endl;
	}
	else
	{
		cout << "str1小于str2" << endl;
	}
}
int main() {

	test01();
	//test02();

	//**************************************
	system("pause");
	return 0;
}

在这里插入图片描述

在这里插入图片描述

7.string字符存取

在这里插入图片描述

#include <iostream>
using namespace std;

//string字符存取
void test01()
{
	string str = "hello";
	cout << "str = " << str << endl;

	//1、通过[]访问单个字符
	for (int i = 0; i < str.size(); i++)
	{
		cout << str[i] << " ";
	}
	cout << endl;

	//通过at方式访问单个字符
	for (int i = 0; i < str.size(); i++)
	{
		cout << str.at(i) << " ";
	}
	cout << endl;

	//修改单个字符
	str[0] = 'x';
	//xello
	cout << "str = " << str << endl;

	str.at(1) = 'x';
	//xxlo

	cout << "str = " << str << endl;
}
int main() {

	test01();
	//test02();

	//**************************************
	system("pause");
	return 0;
}

在这里插入图片描述

在这里插入图片描述

8.string插入和删除

在这里插入图片描述

#include <iostream>
using namespace std;

//字符串插入和删除
void test01()
{
	string str = "hello";

	//插入
	str.insert(1, "111");
	//h111ello
	cout << str << endl;

	//删除
	str.erase(1, 3); //从1号位置开始的3个字符
	cout << str << endl;

}

int main() {

	test01();
	//test02();

	//**************************************
	system("pause");
	return 0;
}

在这里插入图片描述
在这里插入图片描述

9.string子串

在这里插入图片描述
在这里插入图片描述

#include <iostream>
using namespace std;

//string子串截取
void test01()
{
	string str = "123456";
	string subStr = str.substr(1, 3);
	cout << "subStr = " << subStr << endl;

	//实用例子-从邮箱名提取用户信息
	string email = "wanghaha@163.com";
	int pos = email.find('@');
	string usrname = email.substr(0, pos);
	cout << "Name = " << usrname << endl;
}


int main() {

	test01();
	//test02();

	//**************************************
	system("pause");
	return 0;
}

在这里插入图片描述

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

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈,一经查实,立即删除!

相关文章

阿里云服务器安装部署Docker使用教程

本文阿里云百科分享如何在云服务ECS实例上&#xff0c;部署并使用Docker。Docker是一款开源的应用容器引擎&#xff0c;具有可移植性、可扩展性、高安全性和可管理性等优势。开发者可将应用程序和依赖项打包到一个可移植的容器中&#xff0c;快速发布到Linux机器上并实现虚拟化…

react学习笔记——4. 虚拟dom中处理动态数据

如下需求 方式1&#xff1a; 直接在ul中使用{data}&#xff0c;是可以遍历数据的&#xff0c;然后如果将data改成下面形式&#xff0c;也是可以实现的。但是如果data是一个对象&#xff0c;则不能便利。 const data [<li>Angular</li>, <li>React</li&g…

c语言——统计分类

我们将一个班的成绩进行分类&#xff0c; 成绩60分以下的为c、成绩61-89分的为b&#xff0c;90分以上的为A //统计分类 /*我们将一个班的成绩进行分类&#xff0c; 成绩60分以下的为c、成绩61-89分的为b&#xff0c;90分以上的为A */ #include<stdio.h> int main() …

MyBatis的XML映射文件

Mybatis的开发有两种方式&#xff1a; 注解 XML配置文件 通过XML配置文件的形式来配置SQL语句&#xff0c;这份儿XML配置文件在MyBatis当中也称为XML映射文件。 导学&#xff1a;在MyBatis当中如何来定义一份儿XML映射文件&#xff1f; 在MyBatis当中&#xff0c;定义XML…

HCIP的BGP基础实验

一、实验需求 除R5的5.5.5.0环回外&#xff0c;其他所有的环回均可互相一访问。 二、实验步骤 1.配置ip 2.建立邻居关系 2.1 R1和R2建立直连的EBGP邻居关系 [r1]bgp 1 [r1-bgp]router-id 1.1.1.1 [r1-bgp]peer 12.1.1.2 as-number 2 要建的话双方都要建下面配置R2 [r2]bgp…

“冰箭卫士·IP发布会”首次亮相第14届海峡两岸(厦门)文博会

2023年8月6日,“冰箭卫士IP发布会”首次亮相海峡两岸文博会思明馆。此次发布会由厦门市文化创意产业协会、厦门理工&#xff08;集美区&#xff09;政产学研基地主办&#xff0c;厦门市文化创意产业协会IP设计研究院、厦门一笔之上文化发展有限公司、冰箭应急安全科技研究院承办…

springboot 设置自定义启动banner背景图 教程

springboot banner Spring Boot中的banner是在应用程序启动时显示的一个ASCII艺术字符或文本。它被用来给用户展示一些关于应用程序的信息&#xff0c;例如名称、版本号或者公司标志等。 使用Spring Boot的默认设置&#xff0c;如果项目中有一个名为“banner.txt”的文件放置…

交换排序——选择排序和冒泡排序的区别是什么?

今天重温一下算法&#xff0c;其实刚开始我觉得冒泡排序和选择排序是一样的&#xff0c;因为他们排序过程中都是通过相邻的数据比较找到最小/最大的数据&#xff0c;通过不断思考和学习才明白&#xff0c;两者还是有区别的。 冒泡排序 概念 冒泡排序(Bubble Sort)&#xff0…

【面试专题】Java核心基础篇①

&#x1f4c3;个人主页&#xff1a;个人主页 &#x1f525;系列专栏&#xff1a;Java面试专题 目录 1.面向对象的三大特性&#xff1f;分别解释下&#xff1f; 2.介绍一下Java的数据类型 3.说一说重写与重载的区别 4.说一说你对static关键字的理解 5.static修饰的类能不能…

ESP-01S Wi-Fi 模块:配置接线

ESP-01S Wi-Fi 模块&#xff1a;配置接线 参考&#xff1a;使用esp-01s与继电器配合实现远程开关灯 (zhihu.com) ESP-01S WiFi 模块 – 配置布线 - 技术探索 (techexplorations.com) 本文提供了将 ESP8266 Wi-Fi 模块与 Arduino Uno 配合使用的分步指南&#xff0c;重点介绍了…

湘大 XTU OJ 1291 Buying Gifts 题解(非常详细):枚举 维护最小值 排序

一、链接 1291 Buying Gifts 二、题目 题目描述 快到年末了&#xff0c;Boss Liu准备在年会上发些礼物&#xff0c;由于不想礼物的价格区别太大&#xff0c;Boss Liu希望最好的礼物与最差的礼物价格相差越小越好。 当然&#xff0c;如果存在相同的选择&#xff0c;Boss Liu…

python num循环怎么从1开始

如何实现python for循环从1开始&#xff1f; range()函数的作用和用法&#xff1a; 编写一个从数值1开始的循环&#xff1a; 执行后得到的结果 其他注意事项

类的派生

目录 1.1 派生方法一(类调用) 1.2 派生方法二(super) python从小白到总裁完整教程目录:https://blog.csdn.net/weixin_67859959/article/details/129328397?spm1001.2014.3001.5502 1.1 派生方法一(类调用) 指名道姓访问某一个类的函数&#xff1a;该方式与继承无关 class …

QGIS3.28的二次开发七:创建地图工具

地图工具是输入设备&#xff08;一般指鼠标与键盘&#xff09;与画布&#xff08;QgsMapCanvas&#xff09;的交互接口。它负责处理所有用户通过输入设备&#xff08;鼠标和键盘&#xff09;和画布互动的操作&#xff0c;例如镜头控制、要素绘制、标识工具等。 QgsMapTool 是地…

知识付费小程序制作

知识付费小程序是一种通过在线平台提供知识付费服务的应用程序。它为知识提供者和知识需求者之间搭建了一个便捷的交流平台&#xff0c;让用户可以通过支付一定费用来获取专业的知识、技能或经验。 这类小程序通常具有以下核心功能&#xff1a; 1. 课程发布与管理&#xff1a…

内网渗透——入门篇(5%)

内网渗透——入门篇&#xff08;5%&#xff09; 参考文章&#xff1a;​​内网渗透学习&#xff08;一&#xff09;内网入门基础 - leviathan123 - 博客园 (cnblogs.com)​​​ 第一部分 内网常用名词及工具介绍 内网也指局域网&#xff0c;是指在某一区域由多台计算机互连而…

SQLServer 实现数据库表复制到另一个数据库_kaic

SQLServer 实现数据库表复制到另一个数据库 一、如果两个数据库在同一台服务器上 1、复制表结构和数据(A->B)&#xff1a; SELECT * INTO DatabaseB.dbo.TableB FROM DatabaseA.dbo.TableA 2、仅仅复制表结构(A->B)&#xff1a; SELECT * INTO DatabaseB.dbo.TableB …

shell和反弹shell

文章目录 是什么&#xff1f;bash是什么&#xff1f;反弹shell 是什么&#xff1f; Shell 是一个用 C 语言编写的程序&#xff0c;它是用户使用 Linux 的桥梁。Shell 既是一种命令语言&#xff0c;又是一种程序设计语言。 Shell 是指一种应用程序&#xff0c;这个应用程序提供了…

MySQL语句总和之表数据操作(增删改查)

目录 1、增加 insert into 表 (字段1&#xff0c; 字段3&#xff0c; 字段5) values(value1, value2, value3&#xff09; insert into 表 [(字段1&#xff0c; 字段2&#xff0c; 字段3....)] values(value1, value2,value3.....)[,(value1, value2, value3....) .....] in…

2023年即将推出的CSS特性对你影响大不大?

Google开发者大会每年都会提出有关于 Web UI 和 CSS 方面的新特性&#xff0c;今年又上新了许多新功能&#xff0c;今天就从中找出了影响最大的几个功能给大家介绍一下 :has :has() 可以通过检查父元素是否包含特定子元素或这些子元素是否处于特定状态来改变样式&#xff0c;也…