一、 标准库中的string类
01 了解string类
- 字符串是表示字符序列的类
- 标准的字符串类提供了对此类对象的支持,其接口类似于标准字符容器的接口,但添加了专门用于操作单字节字符字符串的设计特性。
- string类是使用char(即作为它的字符类型,使用它的默认char_traits和分配器类型(关于模板的更多信息,请参阅basic_string)。
- string类是basic_string模板类的一个实例,它使用char来实例化basic_string模板类,并用char_traits和allocator作为basic_string的默认参数(根于更多的模板信息请参考basic_string)。
- 注意,这个类独立于所使用的编码来处理字节:如果用来处理多字节或变长字符(如UTF-8)的序列,这个类的所有成员(如长度或大小)以及它的迭代器,将仍然按照字节(而不是实际编码的字符)来操作。
在使用string类时,必须包含#include头文件以及using namespace std
02 string类的常用接口
(1) string类对象的常见构造
函数名称 | 功能说明 |
---|
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.c++");
string s3(10,"a");
string s4(s2);
}
(2) string类对象的容量的操作
函数名称 | 功能说明 |
---|
size | 返回字符串的有效字符长度 |
length | 返回字符串的有效字符长度 |
capacity | 返回空间总大小 |
empty | 检测字符串是否为空串,如果是返回true,否则返回false |
clear | 清空有效字符 |
reserve | 为字符串预留空间 |
resize | 将有效字符的个数改成n个,多出的空间字符用c填充 |
void teststring1()
{
string s("hello.cpp");
cout<<s.size()<<endl;
cout<<s.length()<<endl;
count<<s.capacity()<<endl;
count<<s<<endl;
s.clear();
cout<<s.size()<<endl;
cout<<s.capacity()<<endl;
s.resize(10,'*');
cout<<s.size()<<endl;
cout<<s.capacity()<<endl;
cout<<s<<endl;
s.resize(15);
cout<<s.size()<<endl;
cout<<s.capacity()<<endl;
cout<<s<<endl;
s.resize(5);
cout<<s.size()<<endl;
cout<<s.capacity()<<endl;
cout<<s<<endl;
}
void teststring2()
{
string s;
s.reserve(100);
cout<<s.size()<<endl;
cout<<s.capacity()<<endl;
s.reserve(50);
cout<<s.size()<<endl;
cout<<s.capacity()<<endl;
}
void teststring3()
{
string s;
size_t sz =s.capacity();
cout<<"making s grow:\n";
for(int i=0;i<100;++i)
{
s.push_back('c');
if(sz!=s.capacity())
{
sz=s.capacity();
cout<<"capacity changed:"<<sz<<"\n";
}
}
}
void teststring4()
{
string s;
s.reserve(100);
size_t sz = s.capacity();
cout << "making s grow:\n";
for (int i = 0; i < 100; ++i)
{
s.push_back('c');
if (sz != s.capacity())
{
sz = s.capacity();
cout << "capacity changed: " << sz << '\n';
}
}
}
注意:
- 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不会改变容量大小。
(3) string类对象的访问及遍历操作
函数名称 | 功能说明 |
---|
operator[] | 返回pos位置的字符,const string类对象调用 |
begin+end | begin获取第一个字符位置的迭代器+end获取最后一个字符下一个位置的迭代器 |
rbegin+rend | rbegin获取最后一个字符下一个位置的迭代器,rend获取第一个字符的位置的迭代器 |
范围for | c++11支持更简洁的范围for的遍历方式 |
void Teststring()
{
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;
}
void Teststring()
{
string s("hello Bit");
for(size_t i = 0; i < s.size(); ++i)
cout<<s[i]<<endl;
string::iterator it = s.begin();
while(it != s.end())
{
cout<<*it<<endl;
++it;
}
string::reverse_iterator rit = s.rbegin();
while(rit != s.rend())
cout<<*rit<<endl;
for(auto ch : s)
cout<<ch<<endl;
}
(4) string类对象的修改操作
函数名称 | 功能说明 |
---|
push_back | 在字符串后尾插字符c |
append | 在字符串后追加一个字符串 |
operator+= | 在字符串后追加字符串str |
c_str | 返回c格式字符串 |
find+npos | 从字符串pos位置开始往后找字符c,返回该字符在字符串中的位置 |
rfind+npos | 从字符串pos位置开始向前找字符c,返回该字符在字符串中的位置 |
substr | 在str中从pos位置开始截取n个字符然后将其返回 |
void Teststring()
{
string str;
str.push_back(' ');
str.append("hello");
str += 'b';
str += "it";
cout<<str<<endl;
cout<<str.c_str()<<endl;
string file1("string.cpp");
size_t pos = file.rfind('.');
string suffix(file.substr(pos, file.size()-pos));
cout << suffix << endl;
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;
pos = url.find("://");
url.erase(0, pos+3);
cout<<url<<endl;
}
注意:
- 在string尾部追加字符时,s.push_back© / s.append(1, c) / s += 'c’三种的实现方式差不多,一般情况下string类的+=操作用的比较多,+=操作不仅可以连接单个字符,还可以连接字符串。
- 对string操作时,如果能够大概预估到放多少字符,可以先通过reserve把空间预留好。
(5) string类的非成员函数
函数 | 功能说明 |
---|
operator+ | 尽量少用,因为传值返回,导致深拷贝效率低 |
operator>> | 输入运算符重载 |
operator<< | 输出运算符重载 |
getline | 获取一行字符串 |
relational operators | 大小比较 |
二、 string类的模拟实现
namespace bit
{
class string
{
public:
typedef char* iterator;
public:
string(const char* str = "")
{
_size = strlen(str);
_capacity = _size;
_str = new char[_capacity + 1];
strcpy(_str, str);
}
string(const string& s)
: _str(nullptr)
, _size(0)
, _capacity(0)
{
string tmp(s._str);
this->swap(tmp);
}
string& operator=(string s)
{
this->Swap(s)
namespace bit
{
class string
{
public:
typedef char* iterator;
public:
string(const char* str = "")
{
_size = strlen(str);
_capacity = _size;
_str = new char[_capacity + 1];
strcpy(_str, str);
}
string(const string& s)
: _str(nullptr)
, _size(0)
, _capacity(0)
{
string tmp(s._str);
this->swap(tmp);
}
string& operator=(string s)
{
this->Swap(s)
return _str;
}
size_t size()const
size_t capacity()const
bool empty()const
void resize(size_t newSize, char c = '\0')
{
if (newSize > _size)
{
if (newSize > _capacity)
{
Reserve(newSize);
}
memset(_str + _size, c, newSize - _size);
}
_size = newSize;
_str[newSize] = '\0';
}
void reserve(size_t newCapacity)
{
if (newCapacity > _capacity)
{
char* str = new char[newCapacity + 1];
strcpy(str, _str);
delete[] _str;
_str = str;
_capacity = newCapacity;
}
}
char& operator[](size_t index)
{
assert(index < _size);
return _str[index];
}
const char& operator[](size_t index)const
{
assert(index < _size);
return _str[index];
}
size_t find(char c, size_t pos = 0) const;
size_t find(const char* s, size_t pos = 0) const;
string& insert(size_t pos, char c);
string& insert(size_t pos, const char* str);
string& erase(size_t pos, size_t len);
private:
friend ostream& operator<<(ostream& _cout, const bit::string& s);
friend istream& operator>>(istream& _cin, bit::string& s);
private:
char* _str;
size_t _capacity;
size_t _size;
};
}
ostream& bit::operator<<(ostream& _cout, const bit::string& s)
{
for (size_t i = 0; i < s.size(); ++i)
{
_cout << s[i];
}
return _cout;
}
void TestBitstring()
{
bit::string s1("hello");
s1.push_back(' ');
s1.push_back('b');
s1.append(1, 'i');
s1 += 't';
cout << s1 << endl;
cout << s1.size() << endl;
cout << s1.capacity() << endl;
string::iterator it = s1.begin();
while (it != s1.end())
{
cout << *it << " ";
++it;
}
cout << endl;
for (auto ch : s1)
cout << ch << " ";
cout << endl;
}
}
}
}