【C++干货基地】揭秘C++STL库的魅力:stiring的初步了解和使用
引入
哈喽各位铁汁们好啊,我是博主鸽芷咕《C++干货基地》是由我的襄阳家乡零食基地有感而发,不知道各位的城市有没有这种实惠又全面的零食基地呢?C++ 本身作为一门篇底层的一种语言,世面的免费课程大多都没有教明白。所以本篇专栏的内容全是干货让大家从底层了解C++,把更多的知识由抽象到简单通俗易懂。
文章目录
STL我相信各位学C++的肯定都不会陌生,C++自从模版出来之后就发生了革命性的意义。有了模版这个东西我们就可以只书写一个库来不给不同类型的数据使用。
STL(standard template libaray-标准模板库
):是C++标准库的重要组成部分,不仅是一个可复用的组件库,而且是一个包罗数据结构与算法的软件框架。
STL主要是由四大组件组成的,前面说了STL 是一个包罗数据结构与算法的软件框架 其中里面的容器就是数据结构库含有各种常用的数据结构
- 例如 顺序表 链表 队列 二叉树 等等常用数据结构
- 其中今天介绍的string 其实也算是 STL 的一员是 存放字符的顺序表
但是由于历史原因,string是先出来的 STL 是后面由惠普实验室后开发出来开源所以人们并没有把string 归类到STL 之中。
在C语言中,字符串是以’\0’结尾的一些字符的集合,为了操作方便,C标准库中提供了一些str系列的库函数。
- 但是这些库函数与字符串是分离开的,不太符合OOP的思想.
- 而且底层空间需要用户自己管理,稍不留神可能还会越界访问。
所以在C++中 专门把字符串操作封装成了 string 容器,来给开发者更好的调用接口支持。不用去管理底层的空间分配使得使用更加省心。
- string是表示字符串的字符串类
- 该类的接口与常规容器的接口基本相同,再添加了一些专门用来操作string的常规操作。
比特就业课 - string在底层实际是:basic_string模板类的别名,typedef basic_string<char, char_traits, allocator>
string; - 不能操作多字节或者变长字符的序列。
在使用string类时,必须包含#include头文件以及using namespace std;
构造函数介绍我们初始化string 对象的几种方法
- 1. 构造空的string类对象,即空字符串
int main()
{
string s1();
return 0;
}
- 2. 用C-string来构造string类对象
#include<iostream>
using namespace std;
int main()
{
string s1("hello gugu");
cout << s1 << endl;
return 0;
}
- 3.使用string 中的 pos 位置开始,n个字符开始构造
#include<iostream>
using namespace std;
int main()
{
string s1("hello gugu");
string s2(s1, 6, 4);
cout << s2 << endl;
return 0;
}
- 4.使用 n 个字符初始化
#include<iostream>
using namespace std;
int main()
{
string s1(4,'x');
cout << s1 << endl;
return 0;
}
#include<iostream>
using namespace std;
int main()
{
string s1("hello gugu");
string s2(s1);
cout << s2 << endl;
return 0;
}
#include<iostream>
using namespace std;
int main()
{
string s1("hello gugu");
string s2= s1;
cout << s2 << endl;
return 0;
}
迭代器是C++提供的一种新的遍历方式,其底层是一种类似指针的实现方式。可能很多人觉得这有什么可说的,但是迭代器不仅可以遍历string还能遍历二叉树链表是一种通用的遍历方式。
- 使用迭代器遍历
#include<iostream>
using namespace std;
int main()
{
string s1("hello gugu");
//使用迭代器遍历
string::iterator it1 = s1.begin();
while (it1 != s1.end())
{
cout << *it1 << " ";
it1++;
}
cout << endl;
//使用迭代器修改
string::iterator it2 = s1.begin();
while (it2 != s1.end())
{
*it2 -= 1;
cout << *it2 << " ";
it2++;
}
cout << endl;
return 0;
}
- 使用方括号遍历 【】
#include<iostream>
using namespace std;
int main()
{
string s1("hello gugu");
for (int i = 0; i < s1.size(); i++)
{
cout << s1[i] << ' ';
}
cout << endl;
return 0;
}
- 使用范围 for 遍历
#include<iostream>
using namespace std;
int main()
{
string s1("hello gugu");
for (auto e : s1)
{
cout << e << ' ';
}
cout << endl;
return 0;
}
这俩就是反向迭代器,使用他们打印出来的结果是从后往前
int main()
{
string s1("hello gugu");
//使用迭代器遍历
string::reverse_iterator rit = s1.rbegin();
while (rit != s1.rend())
{
cout << *rit << " ";
++rit;
}
cout << endl;
return 0;
}
#include<iostream>
using namespace std;
int main()
{
string s1("hello gugu");
cout << s1.capacity() << endl;
return 0;
}
#include<iostream>
using namespace std;
int main()
{
string s1("hello gugu");
cout << s1.size() << endl;
return 0;
}
#include<iostream>
using namespace std;
int main()
{
string s1("hello gugu");
s1.resize(3, 'x');
cout << s1 << endl;
s1.resize(5);
cout << s1 << endl;
return 0;
}
#include<iostream>
using namespace std;
int main()
{
string s1("hello gugu");
cout << s1.capacity() << endl;
s1.reserve(6);
cout << s1.capacity() << endl;
s1.resize(100);
cout << s1.capacity() << endl;
return 0;
}
#include<iostream>
using namespace std;
int main()
{
string s1("hello gugu");
cout << s1 << endl;
s1.clear();
cout << s1 << endl;
return 0;
}
#include<iostream>
using namespace std;
int main()
{
string s1("hello gugu");
cout << s1.empty() << endl;
return 0;
}
#include<iostream>
using namespace std;
int main()
{
string s1("hello gugu");
cout << s1.capacity() << endl;
s1.reserve(100);
cout << s1.capacity() << endl;
s1.shrink_to_fit();
cout << s1.capacity() << endl;
return 0;
}
```cpp
#include<iostream>
using namespace std;
int main()
{
string s1("hello gugu");
for (int i = 0; i < s1.size(); i++)
{
cout << s1[i] << ' ';
}
cout << endl;
return 0;
}
#include<iostream>
using namespace std;
int main()
{
string s1("hello gugu");
string s2("xxxxx");
s1 += s2;
cout << s1 << endl;
s1 += "vvvv";
cout << s1 << endl;
s1 += 'x';
cout << s1 << endl;
return 0;
}
#include<iostream>
using namespace std;
int main()
{
string s1("hello gugu");
string s2("xxxxx");
s1.append(s2);
cout << s1 << endl;
s1.append("vvvv");
cout << s1 << endl;
s1.append(4,'c');
cout << s1 << endl;
s1.append("abcdef",3);
cout << s1 << endl;
return 0;
}
#include<iostream>
using namespace std;
int main()
{
string s1("hello gugu");
s1.push_back('x');
cout << s1 << endl;
return 0;
}
#include<iostream>
using namespace std;
int main()
{
string s1("hello gugu");
string s2("xxxxxxx");
s1.assign(s2);
cout << s1 << endl;
s1.assign("Linux C++");
cout << s1 << endl;
s1.assign(5,'c');
cout << s1 << endl;
return 0;
}
#include<iostream>
using namespace std;
int main()
{
string s1("hello gugu");
string s2("C++");
s1.insert(6, s2);
cout << s1 << endl;
s1.insert(2, "xxxx");
cout << s1 << endl;
s1.insert(6, 2,'v');
cout << s1 << endl;
s1.insert(6,"bbbbbb",2);
cout << s1 << endl;
return 0;
}
#include<iostream>
using namespace std;
int main()
{
string s1("hello gugu");
cout << s1 << endl;
cout << s1.size() << endl;
cout << s1.capacity() << endl;
s1.erase(5);
cout << s1 << endl;
cout << s1.size() << endl;
cout << s1.capacity() << endl;
return 0;
}
#include<iostream>
using namespace std;
int main()
{
string s1("hello gugu");
s1.replace(5,1,"C++");
cout << s1 << endl;
return 0;
}
#include<iostream>
using namespace std;
int main()
{
string s1("hello gugu");
string s2("C++ Linux");
cout << s1 << endl;
cout << s2 << endl;
swap(s1, s2);
cout << s1 << endl;
cout << s2 << endl;
return 0;
}
#include<iostream>
using namespace std;
int main()
{
string s1("hello gugu");
int pos = s1.find('g');
cout << s1[pos];
return 0;
}
#include<iostream>
using namespace std;
int main()
{
string s1("hello gugu");
int pos = s1.rfind('g');
cout << pos << endl;
cout << s1[pos];
return 0;
}
#include<iostream>
using namespace std;
int main()
{
string s1("hello gugu");
cout << s1.c_str() << endl;
return 0;
}
- 点赞
- 收藏
- 关注作者
评论(0)