STL的简介
一.什么是STL
STL(standard template libaray-标准模板库):是C++标准库的重要组成部分,不仅是一个可复用的组件库,而且是一个包罗数据结构与算法的软件框架。
二.STL的六大组件
2.1仿函数
包括greater和less等
2.2空间配置器
allocator
2.3 算法
find swap reverse sort merge等等
2.4 迭代器
iterator const_iterator reverse_iterator
等等
2.5容器
string vector list deque map set multimap mutilset
2.6配置器
stack queue priority_queue
三.string类
3.1string类
- string是表示字符串的字符串类
- 该类的接口与常规容器的接口基本相同,再添加了一些专门用来操作string的常规操作。
- string在底层实际是:basic_string模板类的别名,typedefbasic_string<char,char_traits,allocator> string;
- 不能操作多字节或者变长字符的序列。在使用string类时,必须包含#include头文件以及using namespace std
3.2string类的常用接口说明
string()
: 是用来构造空的string类对象,既空字符串
string(const char*s)
用C-string构造string类对象
string(size_t n,char c)
:string类对象中包含n个字符c
string(const string&s)
:拷贝构造函数
代码示例
void test()
{
string s1;
string s2("hello world");
string s3(s2);//拷贝构造
cout<<s1<<endl;
cout<<s2<<endl;
cout<<s3<<endl;
}
int main()
{
test();
return 0;
}
运行结果
3.3string类对象的容量操作
函数名称 | 功能说明 |
---|---|
size | 返回字符串的有效字符长度 |
length | 返回字符串的有效字符长度 |
capcity | 返回空间的总大小 |
empty | 检测字符串释放为空串,是返回true,否则返回false |
clear | 清空有效字符 |
reserve | 为字符串预留空间 |
resize | 将有效字符的个数改成n个,多出的空间用字符c填充 |
代码示例
size
void test1()
{
string s("hello world");
s.resize(s.size()+1,'+');
cout<<s<<endl;
}
结果
length
cout<< s.length()<<endl;
capcity
cout<< s.capacity()<<endl;
empty
cout<< s.empty()<<endl;
resize
s.resize(sz+2,'*');
// 将s中有效字符个数缩小到5个
s.resize(5);
reverse
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;
3.4string类对象的访问及遍历操作
函数名称 | 功能说明 |
---|---|
operator[] | 返回pos位置的字符,const string类对象调用 |
begin+end | begin获取一个字符的迭代器 + end获取最后一个字符下一个位置的迭代器 |
rbegin+ rend | begin获取一个字符的迭代器 + end获取最后一个字符下一个位置的迭代器 |
范围for | C++11支持更简洁的范围for的新遍历方式 |
代码示例
string 的遍历
operator[]
void test4()
{
string s("hello zyy");
//for+operator[]
for(size_t i=0;i<s.size();i++)
{
cout<<s[i]<<endl;
}
}
int main()
{
test4();
return 0;
}
范围for
string s("hello zyy");
for(auto ch : s)
{
cout<<ch<<endl;
}
3.5string类对象的修改操作
函数名称 | 功能说明 |
---|---|
push_back | 在字符串后尾插字符c |
append | 在字符串后追加一个字符串 |
operator+= | 在字符串后追加字符串str |
c_str | 返回C格式字符串 |
find +npos | 从字符串pos位置开始往后找字符c,返回该字符在字符串中的位置 |
rfind | 从字符串pos位置开始往前找字符c,返回该字符在字符串中的位置 |
substr | 在str中从pos位置开始,截取n个字符,然后将其返回 |
push_back
void test5()
{
string str;
str.push_back(' ');
cout<<str<<endl;
}
append
void test5()
{
string str;
str.push_back(' ');
str.append("hello");
cout<<str<<endl;
}
operator+=
void test5()
{
string str;
str.push_back(' ');
str.append("hello");
str+='z';
str+="yy";
cout<<str<<endl;
}
c_str
void test5()
{
string str;
str.push_back(' ');
str.append("hello");
str+='z';
str+="yy";
cout<<str<<endl;
cout<<str.c_str()<<endl;
}
find +npos
取出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;
substr和rfind
string file("string.cpp");
size_t pos = file.rfind('.');
string suffix(file.substr(pos,file.size()-pos));
cout<<suffix<<endl;
以上就是string的常用操作使用说明
如果有疑问,欢迎评论区下方留言;本人水平有限 ,如有错误,也欢迎在评论区下方批评指正。若是喜欢本文,就帮忙点赞吧!