STL--string类--常用接口;string类对象的容量、访问及遍历、修改操作;非成员函数

  1. string是表示字符串的字符串类;
  2. 该类的接口与常规容器的接口基本相同,再添加了一些专门用来操作string的常规操作;
  3. string在底层实际是:basic_string模板类的别名,typedefbasic_string<char, char_traits, allocator>string;
  4. 不能操作多字节或者变长字符的序列。

使用string类时,必须包含#include头文件以及using namespace std;

string类的常用接口说明

  • string():构造空的string类对象,即空字符串
    例:构造空的string 类对象s1
	string s1;
  • string(const char* s):用C-string来构造string类对象
    例:用C格式字符串构造string类对象s2
	string s2("nice");
  • string(const string&s):拷贝构造函数
    例:拷贝构造s3
	string s3(s2);

string类对象的容量操作

  • size:返回字符串有效字符长度
	string s("hello, world!");
	cout << s.size() << endl;
  • empty:检测字符串是否为空串,是返回true,否则返回false
	string str;
	if(str.empty())
	{
		cout << "空" << endl;
	}
	else
	{
		cout << "非空" << endl;
	}
  • clear:清空有效字符

将s中的字符串清空,注意清空时只是将size清0,不改变底层空间的大小

	s.clear();
	cout << s.size() << endl;
	cout << s.capacity() << endl;
  • reserve:为字符串预留空间:对capacity进行调整容量大小

不改变有效元素个数,当reserve的参数小于string的底层空间总大小时,reserver不会改变容量大小。

	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;

通过利用reserve提高插入数据的效率,避免增容带来的开销

// 利用reserve提高插入数据的效率,避免增容带来的开销
//====================================================================================
void TestPushBack()
{
	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';
		}
	}
}
  • resize:将有效字符的个数该成n个,多出的空间用字符c填充

resize在改变元素个数时,如果是将元素个数增多,可能会改变底层容量的大小,如果是将元素个数减少,底层空间总大小不变。

	// 将s中有效字符个数增加到10个,多出位置用'a'进行填充
	// “aaaaaaaaaa”
	s.resize(10, 'a');
	cout << s.size() << endl;

	// 将s中有效字符个数增加到15个,多出位置用缺省值'\0'进行填充
	// "aaaaaaaaaa\0\0\0\0\0"
	// 注意此时s中有效字符个数已经增加到15个
	s.resize(15);
	cout << s.size() << endl;

string类对象的访问及遍历操作

  • operator[]:返回pos位置的字符,const string类对象调用
void Test()
{
	string s1("hello ysy");
	const string s2("Hello xyt");
	cout << s1 << " " << s2 << endl;
	cout << s1[0] << " " << s2[0] << endl;

	s1[0] = 'H';
	cout << s1 << endl;

	// s2[0] = 'h';   代码编译失败,因为const类型对象不能修改

	//遍历通常使用该方法
	for (size_t i = 0; i < s.size(); ++i)
		cout << s[i] << endl;
	
}
  • begin+ end:begin获取一个字符 + end获取最后一个字符下一个位置
void test()
{
	string s("hello ysy");
	string::iterator it = s.begin();
	while (it != s.end())
	{
		cout << *it << endl;
		++it;
	}
}
  • rbegin+ rend:反向迭代器:rbegin获取最后一个字符的迭代器 + end获取第一个字符上一个位置
void test()
{
	string s("hello ysy");
	string::reverse_iterator rit = s.rbegin();
	// C++11之后,直接使用auto定义迭代器,让编译器推到迭代器的类型
	//auto rit = s.rbegin();
	while (rit != s.rend())
	{
		cout << *rit << endl;
		++rit;
	}
}

以下代码将三种遍历方式汇总:

void Teststring4()
{
	string s("hello ysy");
	// 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;
		++rit;
	}
	
	// 3.范围for
	for (auto ch : s)
		cout << ch << endl;
}

string类对象的修改操作

  • push_back:在字符串后尾插字符c
void Test()
{
	string str;
	str.push_back(' ');   // 在str后插入空格
}
  • append:在字符串后追加一个字符串
void Test()
{
	string str;
	str.append("hello");  // 在str后追加一个字符"hello"
}
  • operator+=:在字符串后追加字符串str
void Test()
{
	string str;
	str.push_back(' ');   // 在str后插入空格
	str.append("hello");  // 在str后追加一个字符"hello"
	str += 'y';           // 在str后追加一个字符'b'   
	str += "sy";          // 在str后追加一个字符串"it"
	cout << str << endl;
}
  • c_str:返回C格式字符串
void Test()
{
	string str;
	str.push_back(' ');   // 在str后插入空格
	str.append("hello");  // 在str后追加一个字符"hello"
	str += 'y';           // 在str后追加一个字符'b'   
	str += "sy";          // 在str后追加一个字符串"it"
	cout << str << endl;
	cout << str.c_str() << endl;   // 以C语言的方式打印字符串
}
  • find+npos:从字符串pos位置开始往后找字符c,返回该字符在字符串中的位置
void Test()
{
// 取出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类非成员函数

  • operator+:尽量少用,因为传值返回,导致深拷贝效率低

一般使用operator+=

  • operator>>:输入运算符重载

  • operator<<:输出运算符重载

  • getline:获取一行字符串(如果想读到带空格的字符串

使用cin进行输入获取字符串时,如果遇到空格就会结束。getline则不会,只有遇到换行或者自己指定的分隔符(delim)才结束。

void test()
{
	string str;
	//输入
	//cin : 遇到空格/换行结束
	//cin << str;
	//getline:遇到换行结束
	getline(cin, str);

	//遇到delim结束
	getline(cin, str, ',');
}
  • relational operators:大小比较
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值