STL —— string(2)

本篇文章主要讲解string的用法。 

目录

1. 迭代器(Iterators)

1.1 begin() 和 end() 

1.2 rbegin() 和 rend() 

2. 容量操作(capacity)

 2.1 size()、length()、maxsize()

2.2 capacity()

 2.3 empty()、clear()

2.4 reserve()

2.5 shrink_to_fit()

2.6 resize()

3. 修改(Modifiers) 

3.1 operator+=、append、push_back 

3.2 assign()

3.3 insert()、erase()

 3.4 replace()


1. 迭代器(Iterators)

  • string 中的迭代器主要分为正向迭代器和反向迭代器,其中又可以细分为 const 和 非const类型的,这里主要讲解begin、end 和 rbegin、rend。

1.1 begin() 和 end() 

  • begin() & end() 有const 和 非const 类型,const类型主要就是不能修改。
  • begin 指向的是首元素,end 指向的是最后一个元素的下一个位置。

void string_test1()
{
	string s0("hello world");
	string::iterator it = s0.begin();
	while (it != s0.end())
	{
		cout << *it << " ";
		++it;
	}
	cout << endl;
	it = s0.begin();
	while (it != s0.end())
	{
		*it += 3;
		++it;
	}
	it = s0.begin();
	while (it != s0.end())
	{
		cout << *it << " ";
		++it;
	}
}

void string_test2()
{
	const string s0("hello world");
	string::const_iterator it = s0.begin();
	while (it != s0.end())
	{
		cout << *it << " ";
		++it;
	}
	it = s0.begin();
	//会报错
	/*while (it != s0.end())
	{
		*it += 3;
		++it;
	}*/

}


int main()
{
	string_test1();
	string_test2();
	return 0;
}

 

1.2 rbegin() 和 rend() 

  • rbegin() & rend() 是反向迭代器,也有const 和 非const 类型,const类型也是不能修改。
  • rbegin 指向的是最后一个元素,rend 指向的是第一个元素的下一个。

void string_test3()
{
	string s0("hello world");
	string::reverse_iterator it = s0.rbegin();
	while (it != s0.rend())
	{
		cout << *it << " ";
        // 这里是++ ,不是--
		++it;
	}
	cout << endl;
	it = s0.rbegin();
	// 可修改
	while (it != s0.rend())
	{
		*it += 1;
		++it;
	}
	it = s0.rbegin();
	while (it != s0.rend())
	{
		cout << *it << " ";
		++it;
	}
	cout << endl;
}

void string_test4()
{
	const string s0("hello world");
	string::const_reverse_iterator it = s0.rbegin();
	// 只读,不可修改
	while (it != s0.rend())
	{
		cout << *it << " ";
		++it;
	}
	cout << endl;
}


2. 容量操作(capacity)

  • 容量操作主要就是计算字符串长度、容量等,如下:

 2.1 size()、length()、maxsize()

  • size 和 length 都是返回字符串的长度,但是一般情况下都用size
  • maxsize() 表示能接受最大的字符串长度。
void strint_test1()
{
	string s0("hello world");
	cout << s0.length() << endl;
	cout << s0.size() << endl;
}

int main()
{
	strint_test1();
	return 0;
}

void strint_test1()
{
	string s0("hello world");
    // 不同编译器下可能不同
    cout << "max_size() <:" << s0.max_size() << endl;
}

 

2.2 capacity()

  • capacity 可以查看当前编译器为字符串已开辟的容量大小,咱们可以结合push_back()来查看string在vs环境下的扩容机制:
void string_test1()
{
	string s0("hello world");
	cout << s0.capacity() << endl;
	//查看扩容机制
	cout << "开始时的capacity < :" << s0.capacity() << endl;
	int newcapacity = s0.capacity();
	for (size_t i = 0; i < 100; i++)
	{
		s0.push_back(' ');
		if (newcapacity < s0.capacity())
		{
			newcapacity = s0.capacity();
			cout << "扩容后的capacity < :" << newcapacity << endl;
		}
	}
}

  • 可以看到最开始是两倍扩容,之后就是1.5倍扩容,那么在g++环境下呢?我们可以尝试一下在Linux环境下运行相同的代码,可以发现一直是二倍扩容:

 

 2.3 empty()、clear()

  • empty 是判断字符串是否为空,是返回1,否则返回0;
  • clear 是清空字符串。

void string_test1()
{
	string s0("hello world");
	cout << s0.empty() << endl;
	s0.clear();
	cout << s0.empty() << endl;

}

2.4 reserve()

  • 如果说提前知道了字符串的长度,那么一直扩容的话编译器会有很多消耗,这个时候我们可以利用reserve() 提前开好空间,就不需要持续扩容了,减少了消耗。
  • 但是并不是你要多大编译器就帮你开多大,他要根据内存对齐的原则,可能比你给的要大一些。
  • 但是如果说你给的参数小于capacity(),编译器并不会帮你缩容,只有大于capacity的时候才会帮你扩容。

void string_test1()
{
	string s0("hello worldxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx");
	s0.reserve(41);
	cout << s0.capacity() << endl;
	cout << s0.capacity() << endl;
}

 

void string_test1()
{
	string s0("hello worldxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx");
	cout << s0.capacity() << endl;
	s0.reserve(10);
	cout << s0.capacity() << endl;
}

2.5 shrink_to_fit()

  •  shring_to_fit() 就是缩容的意思,如果说你现在的容量大于size,他就会帮你缩容;

void string_test1()
{
	string s0("hello worldxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx");
	s0.reserve(2000);
	cout << s0.capacity() << endl;
	s0.shrink_to_fit();
	cout << s0.capacity() << endl;

}

2.6 resize()

  • resize() 是帮你调整大小的意思,当给的参数比size小,他会帮你删除元素;
  • 当给的参数比size大,比capacity小,会帮你默认插入 '\0' 补齐;
  • 当给的参数比capacity大,会帮你扩容,并默认插入 '\0'。  
  • 如果说也给了要以什么字符补齐,就会帮你用这个字符补齐。

  1.  比size小:
    void string_test1()
    {
    	string s0("hello worldxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx");
    	s0.resize(11);
    	cout << s0 << endl;
    }

  2. 比size大,比capacity小:
    void string_test1()
    {
    	string s0("hello worldxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx");
        // 默认用 '\0' 补齐
    	s0.resize(45);
    	cout << s0 << endl;
    }

  3. 比capacity大:
    void string_test1()
    {
    	string s0("hello worldxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx");
        // 用'D'补齐
    	s0.resize(100,'D');
    	cout << s0 << endl;
    }


3. 修改(Modifiers) 

  • 修改的主要功能是给字符串添加一个字符串或者字符,这里讲几个常用的。

3.1 operator+=、append、push_back 

  • push_back 就是尾插,但是只能一个字符一个字符插入;

void string_test1()
{
	string s0("hello world");
	s0.push_back(' ');
	s0.push_back('d');
	s0.push_back('d');
	s0.push_back('d');
	cout << s0 << endl;
}

 

  • append用法有点多,可以加上 string类型、const char* 类型,甚至是迭代器:

void string_test1()
{
	string s0("hello,");
	string s1(" the humorous man");
	s0.append(s1); //1
	cout << s0 << endl;
	s0.append(" handsome");//3
	cout << s0 << endl;
	s0.append(s1, 0, 4);//2
	cout << s0 << endl;
	s0.append(" the humorous man", 14);//4
	cout << s0 << endl;
	s0.append(10, 'x');//5
	cout << s0 << endl;
	s0.append(s1.begin(), s1.end() - 4);//6
	cout << s0 << endl;

}

 

  • operator+=是一个运算符重载,可以加上string类型、char类型、cosnt char*类型

void string_test1()
{
	string s0("hello,");
	s0 += "humorous man";
	cout << s0 << endl;
	string s1("baby");
	s0 += s1;
	cout << s0 << endl;
	s0 += 'I';
	cout << s0 << endl;
}

3.2 assign()

  • string类的assign函数会将指定的值赋给字符串,并覆盖原有的值。如果目标字符串比原字符串短,那么超出目标字符串长度的部分将会被删除。 

#include <iostream>
#include <string>

int main() {
    std::string s = "Hello";
    
    s.assign("World");
    std::cout << s << std::endl;  
    
    s.assign("Lorem ipsum", 5);
    std::cout << s << std::endl;  
    
    s.assign(3, 'X');
    std::cout << s << std::endl; 
    
    return 0;
}

 

3.3 insert()、erase()

  • insert() 就是在pos位置插入,可以是string、const char*、char;

int main() 
{
    string s = "Hello";
    s.insert(5, 1, ' ');  // 在位置 5 插入一个空格字符
    cout << s << endl;  // 输出:"Hello "
    
    string s1 = "Hello";
    string substring = " beautiful";
    s1.insert(5, substring, 0, substring.length());  // 在位置 5 插入子字符串
    cout << s1 << endl;  // 输出:"Hello beautiful"
    return 0;
}
  • erase函数用于从字符串中删除字符或子字符串。它有以下几种用法:

int main()
{
	string s = "Helloworld";
	s.erase(6, 4);  // 从位置 6 开始删除长度为 4 的子字符串
	cout << s << endl;  // 输出:"Hellow"
	string s1 = "Hello";
	s1.erase(s1.begin() + 2);  // 删除第 2 个字符(索引位置为 2)
	cout << s1 << endl;  // 输出:"Helo"
}

 3.4 replace()

  • replace 用于替换字符串中的字符或子字符串。

int main()
{
	string s = "Hello World";
	s.replace(6, 5, "Beautiful");  // 替换从位置 6 开始的 5 个字符为 "Beautiful"
	cout << s << endl;  // 输出:"Hello Beautiful"
	string s1 = "Hello World";
	s1.replace(s1.begin() + 2, s1.begin() + 5, "XYZ");  // 替换第 2 到第 5 个字符为 "XYZ"
	cout << s1 << endl;  // 输出:"HeXYZ World"
	string s2 = "Hello World";
	string substring = "Beautiful";
	s2.replace(6, 5, substring, 0, 3);  // 替换从位置 6 开始的 5 个字符为 substring 的前 3 个字符
	cout << s2 << endl;  // 输出:"Hello Bea"
	string s3 = "Hello World";
	s3.replace(6, 5, "Beautiful");  // 替换从位置 6 开始的 5 个字符为 "Beautiful"
	cout << s3 << endl;  // 输出:"Hello Beautiful"
}

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

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

相关文章

罗德与施瓦茨联合广和通全面验证RedCap模组FG132系列先进性能

近日&#xff0c;罗德与施瓦茨联合广和通完成Redcap(Reduce Capability)功能和性能验证。本次测试使用R&SCMX500 OBT(One Box Tester)无线通信测试仪&#xff0c;主要验证广和通RedCap模组FG132系列射频性能以及IP层吞吐量&#xff0c;包括RedCap上下行吞吐量和射频指标如矢…

【技巧】ChatGPT Prompt 提示语大全

转载请注明出处&#xff1a;小锋学长生活大爆炸[xfxuezhang.cn] 主要来自&#xff1a;https://github.com/f/awesome-chatgpt-prompts ChatGPT SEO提示 Contributed by: StoryChief AI Reference: 7 Powerful ChatGPT Prompts to Create SEO Content Faster 供稿人&#xff1a;…

ruoyi-nbcio-plus基于vue3的flowable增加开始节点的表单绑定修改

更多ruoyi-nbcio功能请看演示系统 gitee源代码地址 前后端代码&#xff1a; https://gitee.com/nbacheng/ruoyi-nbcio 演示地址&#xff1a;RuoYi-Nbcio后台管理系统 http://122.227.135.243:9666/ 更多nbcio-boot功能请看演示系统 gitee源代码地址 后端代码&#xff1a…

Python文件读写操作

文件操作注意点 注意点&#xff1a; 1. for line in file --> 会将偏移量移到末尾 2. buffering1 --> 缓冲区中遇到换行就刷新&#xff0c;即向磁盘中写入 3. 读操作结束后&#xff0c;文本偏移量就会移动到读操作结束位置 """编写一个程序,循环不停的写入…

快速区分清楚图形渲染中的AABB,KD树和BVH这些概念

快速区分清楚图形渲染中的AABB&#xff0c;KD树和BVH这些概念 主要想形象去区分好这些术语&#xff0c;目的是扫盲&#xff0c;先开好坑&#xff0c;内容持续填充。 0.先摆出这些词的全称 AABB&#xff1a; 原名&#xff1a;axis aligned bounding box&#xff1b;中文直译名…

Java语法学习八之认识String类

String类的重要性 在C语言中已经涉及到字符串了&#xff0c;但是在C语言中要表示字符串只能使用字符数组或者字符指针&#xff0c;可以使用标准库提供的字符串系列函数完成大部分操作&#xff0c;但是这种将数据和操作数据方法分离开的方式不符合面相对象的思想&#xff0c;而…

高效的Gitlab Flow最佳实践

文章目录 一、git flow二、github flow三、gitlab flow四、基于gitlab flow的最佳实践1.语义化版本号2.测试发布3.bug修复 参考 业界包含三种flow&#xff1a; Git flowGithub flowGitlab flow 三种工作流程&#xff0c;有一个共同点&#xff1a;都采用"功能驱动式开发&…

计算机二级Python基础操作题

题目来源&#xff1a;计算机二级Python半个月抱佛脚大法&#xff08;内呈上真题版&#xff09; - 知乎 第4&#xff0c;5&#xff0c;6&#xff0c;7&#xff0c;9&#xff0c;10&#xff0c;11套 1. 基础题1 sinput() print("{:\"^30x}".format(eval(s))) b …

xilinx linux AXI GPIO 驱动学习

vivado工程 vivado 配置一个 AXI GPIO&#xff0c; 全输出&#xff0c;宽度为1 设备树解读 生成的对应pl.dtsi设备树文件如下 axi_gpio: gpio40020000 {#gpio-cells <2>;clock-names "s_axi_aclk";clocks <&clkc 15>;compatible "xlnx,…

海外盲盒App开发:探索惊喜与乐趣的跨国新体验

在全球化日益加速的今天&#xff0c;人们对新鲜、有趣、充满惊喜的体验需求不断增长。盲盒作为一种充满神秘与乐趣的玩法&#xff0c;正迅速在全球范围内走红。为了满足广大海外用户的盲盒体验需求&#xff0c;我们致力于开发一款海外盲盒App&#xff0c;为用户带来跨国界的惊喜…

C#,图论与图算法,计算无向连通图中长度为n环的算法与源代码

1 无向连通图中长度为n环 给定一个无向连通图和一个数n,计算图中长度为n的环的总数。长度为n的循环仅表示该循环包含n个顶点和n条边。我们必须统计存在的所有这样的环。 为了解决这个问题,可以有效地使用DFS(深度优先搜索)。使用DFS,我们可以找到特定源(或起点)的长度…

高精度AI火灾烟雾检测算法,助力打造更加安全的楼宇环境

一、方案背景 近日&#xff0c;南京居民楼火灾事故导致15人死亡的新闻闹得沸沸扬扬&#xff0c;这一事件又激起了大家对楼宇火灾隐患的进一步担忧。事后我们除了思考政府、消防及物业部门应对此事的解决办法&#xff0c;我们还应该思考如何利用现有的技术帮助人们减少此类事情的…

手撕算法-无重复字符的最长子串

描述 分析 滑动窗口&#xff0c;记录窗口中的所有出现的字符&#xff0c;然后窗口左边界固定&#xff0c;右边界右滑&#xff0c;如果&#xff0c;窗口中不存在新的字符&#xff0c;则右滑成功&#xff0c;否则左边界右滑&#xff0c;直到窗口中不存在右边界的值。 描述感觉不…

Linux初学(八)磁盘管理

一、磁盘管理 1.1 简介 磁盘的工作原理&#xff1a; 添加磁盘对磁盘进行分区格式化磁盘挂载和使用磁盘 磁盘的类型&#xff1a; 固态机械 磁盘的接口类型&#xff1a; IDESTSTSCSI 磁盘工作的原理&#xff1a; 磁盘&#xff0c;特别是硬盘&#xff0c;和内存不同&#xff0c;…

【网络基础】网络层基本协议介绍

目录 一、IP数据包 1.1 网络层的功能 1.2 IP数据包格式 二、ICMP协议介绍 2.1 作用 2.2 常用命令 2.2.1 Ping命令 2.2.2 tracert命令 2.3 广播域 三、ARP协议介绍 3.1 作用 3.2 原理 一、IP数据包 1.1 网络层的功能 定义了基于IP协议的逻辑地址&#xff0c;就是I…

IDEA使用手册

天行健&#xff0c;君子以自强不息&#xff1b;地势坤&#xff0c;君子以厚德载物。 每个人都有惰性&#xff0c;但不断学习是好好生活的根本&#xff0c;共勉&#xff01; 文章均为学习整理笔记&#xff0c;分享记录为主&#xff0c;如有错误请指正&#xff0c;共同学习进步。…

优化选址问题 | 基于禁忌搜索算法求解基站选址问题含Matlab源码

目录 问题代码问题 禁忌搜索算法(Tabu Search)是一种局部搜索算法的扩展,它通过引入一个禁忌列表来避免陷入局部最优解,并允许在一定程度上接受较差的解来跳出局部最优。在基站选址问题中,我们可以使用禁忌搜索算法来寻找满足覆盖要求且基站数量最少的选址方案。 以下是…

无人机采集图像的相关知识

1.飞行任务规划 一般使用飞行任务规划软件进行飞行任务的设计&#xff0c;软件可以自动计算相机覆盖和图像重叠情况。比如ArduPilot (ArduPilot - Versatile, Trusted, Open) 和UgCS (http://www.ugcs.com)是两个飞行任务规划软件&#xff0c;可以适用大多数无人机系统。 2.图…

Java 模拟Spring,实现IOC和AOP的核心(二)

接着上一篇&#xff0c;在上一篇完成了有关IOC的注解实现&#xff0c;这一篇用XML的方式实现IOC&#xff0c;并且完成AOP。 简易的IOC框图 注解的方式实现了左边的分支&#xff0c;那么就剩下右边的XML分支&#xff1a; XmlContext&#xff1a; 这个类是也是AbstractApplicat…

海量数据处理项目-技术Leader必备方法论-SMART衡量需求-工作的利器

海量数据处理项目-技术Leader必备方法论-SMART衡量需求-工作的利器