个人主页:简 料
所属专栏:C++
个人社区:越努力越幸运社区
简 介:简料简料,简单有料~在校大学生一枚,专注C/C++/GO的干货分享,立志成为您的好帮手 ~
C/C++学习路线 (点击解锁) |
---|
❤️C语言 |
❤️初阶数据结构与算法 |
❤️C++ |
❤️高阶数据结构 |
❤️Linux系统编程与网络编程 |
string
在许多编程语言中,“string
” 是一个特殊的类,用于处理文本数据。它提供了各种方法和属性,用于操作和管理字符串。
在C++
中,string
类的使用是非常的频繁的,它弥补了C语言
在对字符串进行操作中的不足,提高了IT
人员写代码的效率。它比STL
出现的早,可以说,string
也间接造就了STL
的诞生~
能够熟练的使用string
,可以很大程度上提高写算法题的效率,有许多的困难算法题,都需要对字符串进行操作,这时候string
以及它里面的方法就是个杀手锏了~
本章将带你认识string类,小伙伴们往下看
string类是C++标准库中的一部分。这个类被设计用来存储和处理文本字符串。std::string (string 是 std 里的) 提供了大量的方法来操作字符串,包括获取长度、连接字符串、比较字符串、查找子字符串、插入和删除字符等等。
总的来说string类是一个功能强大、高效、安全、可扩展和灵活的类,适用于处理各种文本字符串相关的任务。
因此,学习string类对于提高你的C++编程技能和解决实际问题是非常有帮助的。
string类的文档介绍:-> string类的文档介绍 <-。
总结:
typedef basic_string string;
在使用string类时,必须包含
#include
头文件以及using namespace std;
void Teststring()
{
string s1; // 构造空的string类对象s1
string s2("hello bit"); // 用C格式字符串构造string类对象s2
string s3(s2); // 拷贝构造s3
}
// 测试string容量相关的接口
// size/clear/resize
void Teststring1()
{
// 注意:string类对象支持直接用cin和cout进行输入和输出
string s("hello, bit!!!");
cout << s.size() << endl;
cout << s.length() << endl;
cout << s.capacity() << endl;
cout << s << endl;
// 将s中的字符串清空,注意清空时只是将size清0,不改变底层空间的大小
s.clear();
cout << s.size() << endl;
cout << s.capacity() << endl;
// 将s中有效字符个数增加到10个,多出位置用'a'进行填充
// “aaaaaaaaaa”
s.resize(10, 'a');
cout << s.size() << endl;
cout << s.capacity() << endl;
// 将s中有效字符个数增加到15个,多出位置用缺省值'\0'进行填充
// "aaaaaaaaaa\0\0\0\0\0"
// 注意此时s中有效字符个数已经增加到15个
s.resize(15);
cout << s.size() << endl;
cout << s.capacity() << endl;
cout << s << endl;
// 将s中有效字符个数缩小到5个
s.resize(5);
cout << s.size() << endl;
cout << s.capacity() << endl;
cout << s << endl;
}
//====================================================================================
void Teststring2()
{
string s;
// 测试reserve是否会改变string中有效元素个数
s.reserve(100);
cout << s.size() << endl;
cout << s.capacity() << endl;
// 测试reserve参数小于string的底层空间大小时,是否会将空间缩小
s.reserve(50);
cout << s.size() << endl;
cout << s.capacity() << endl;
}
注意:
size()
与length()
方法底层实现原理完全相同,引入size()
的原因是为了与其他容器的接口保持一致,一般情况下基本都是用size()
。clear()
只是将string中有效字符清空,不改变底层空间大小。resize(size_t n)
与 resize(size_t n, char c)
都是将字符串中有效字符个数改变到n
个,不同的是当字符个数增多时:resize(n)
用0
来填充多出的元素空间,resize(size_t n, char c)
用字符c来填充多出的元素空间。注意:resize
在改变元素个数时,如果是将元素个数增多,可能会改变底层容量的大小,如果是将元素个数减少,底层空间总大小不变。reserve(size_t res_arg=0)
:为string预留空间,不改变有效元素个数,当reserve
的参数小于string
的底层空间总大小时,reserver
不会改变容量大小。// string的遍历
// begin()+end() for+[] 范围for
// 注意:string遍历时使用最多的还是for+下标 或者 范围for(C++11后才支持)
// begin()+end()大多数使用在需要使用STL提供的算法操作string时,比如:采用reverse逆置string
void Teststring3()
{
string s1("hello Bit");
const string s2("Hello Bit");
cout << s1 << " " << s2 << endl;
cout << s1[0] << " " << s2[0] << endl;
s1[0] = 'H';
cout << s1 << endl;
// s2[0] = 'h'; 代码编译失败,因为const类型对象不能修改
}
void Teststring4()
{
string s("hello Bit");
// 3种遍历方式:
// 需要注意的以下三种方式除了遍历string对象,还可以遍历是修改string中的字符,
// 另外以下三种方式对于string而言,第一种使用最多
// 1. for+operator[]
for (size_t i = 0; i < s.size(); ++i)
cout << s[i] << endl;
// 2.迭代器
string::iterator it = s.begin();
while (it != s.end())
{
cout << *it << endl;
++it;
}
// string::reverse_iterator rit = s.rbegin();
// C++11之后,直接使用auto定义迭代器,让编译器推到迭代器的类型
auto rit = s.rbegin();
while (rit != s.rend())
cout << *rit << endl;
// 3.范围for
for (auto ch : s)
cout << ch << endl;
}
// 1. 插入(拼接)方式:push_back append operator+=
// 2. 正向和反向查找:find() + rfind()
// 3. 截取子串:substr()
// 4. 删除:erase
void Teststring5()
{
string str;
str.push_back(' '); // 在str后插入空格
str.append("hello"); // 在str后追加一个字符"hello"
str += 'b'; // 在str后追加一个字符'b'
str += "it"; // 在str后追加一个字符串"it"
cout << str << endl;
cout << str.c_str() << endl; // 以C语言的方式打印字符串
// 获取file的后缀
string file("string.cpp");
size_t pos = file.rfind('.');
string suffix(file.substr(pos, file.size() - pos));
cout << suffix << endl;
// npos是string里面的一个静态成员变量
// static const size_t npos = -1;
// 取出url中的域名
string url("http://www.cplusplus.com/reference/string/string/find/");
cout << url << endl;
size_t start = url.find("://");
if (start == string::npos)
{
cout << "invalid url" << endl;
return;
}
start += 3;
size_t finish = url.find('/', start);
string address = url.substr(start, finish - start);
cout << address << endl;
// 删除url的协议前缀
pos = url.find("://");
url.erase(0, pos + 3);
cout << url << endl;
}
注意:
string
尾部追加字符时,s.push_back(c) / s.append(1, c) / s += 'c'
三种的实现方式差不多,一般情况下string
类的+=
操作用的比较多,+=
操作不仅可以连接单个字符,还可以连接字符串。string
操作时,如果能够大概预估到放多少字符,可以先通过reserve
把空间预留好。上面的几个接口大家了解一下。string类中还有一些其他的操作,这里不一一列举,大家在需要用到时不明白了查文档即可。
✅仅仅反转字母
✅字符串中的第一个唯一字符
✅字符串最后一个单词的长度
✅验证回文串
✅字符串相加
本章主要是给大家介绍
C++
当中的string
类。无论你是不是C++
选手,string
类都是陪伴你左右的~它的优点是真的多:易于使用,内存管理,安全性,效率,可读性,兼容性。对于string
类的学习,还是要多看,多敲,多尝试,后面也是一样 ~
❤️后续将会继续输出有关
C++
的文章,你们的支持就是我写作的最大动力!
感谢阅读本小白的博客,错误的地方请严厉指出噢~