c++中的string类

string类

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

string类常见构造

函数名称									 功能说明
string() 								 构造空的string类对象,即空字符串
string(const char* s) 				  	 用C-string来构造string类对象
string(size_t n, char c) 				 string类对象中包含n个字符c
string(const string&s)					 拷贝构造函数
string(const string&s, size_t n) 		 用s中的前n个字符构造新的string类对象

示例

#include<iostream>
#include<string>
using namespace std;




void test01()
{
	string str;//默认构造
	string str2(str);//拷贝构造
	string str3 = str;

	string str4 = "abcd";
	string str5(10, 'a');

	cout << str4 << endl;
	cout << str5 << endl;
}
   
int main()
{

	test01();

	system("pause");
	return 0;
}

在这里插入图片描述
string类对象的容量操作

函数名称 								 功能说明
size_t size() const 					 返回字符串有效字符长度
size_t length() const					 返回字符串有效字符长度
size_t capacity ( )						 const 返回空间总大小
bool empty ( ) 							 const 检测字符串释放为空串,是返回true,否则返回false
void clear()							 清空有效字符
void resize ( size_t n, char c )		 将有效字符的个数该成n个,多出的空间用字符c填充
void resize ( size_t n )				 将有效字符的个数改成n个,多出的空间用0填充
void reserve ( size_t res_arg=0 ) 		 为字符串预留空间

string类对象的访问操作

 函数名称 										功能说明
char& operator[] ( size_t pos ) 				返回pos位置的字符,const string类对象调用
const char& operator[] ( size_t pos ) const		返回pos位置的字符,非const string类对象调 用

string类对象的修改操作

函数名称 										功能说明
void push_back(char c)						    在字符串后尾插字符c
string& append (const char* s);				    在字符串后追加一个字符串
string& operator+=(const string& str)			在字符串后追加字符串str
string& operator+=(const char* s) 				在字符串后追加C个数字符串
string& operator+=(char c) 						在字符串后追加字符c
const char* c_str( )const 						返回C格式字符串
size_t find (char c, size_t pos = 0)const		从字符串pos位置开始往后找字符c,返回该字符在 字符串中的位置
size_t rfind(char c, size_t pos = npos)			从字符串pos位置开始往前找字符c,返回该字符在 字符串中的位置
string substr(size_t pos = 0, size_t n = npos)const		在str中从pos位置开始,截取n个字符,然后将其 返回

string类非成员函数

 函数 								功能说明
operator+ 							尽量少用,因为效率低
operator>> 							输入运算符重载
operator<<						    输出运算符重载
getline							    获取一行字符串
relational operators 				大小比较

在这里插入图片描述
在这里插入图片描述

在这里插入图片描述

 #include<iostream>
#include<string>
using namespace std;
#include<stdexcept>




void test01()
{
	string str;//默认构造
	string str2(str);//拷贝构造
	string str3 = str;

	string str4 = "abcd";
	string str5(10, 'a');

	cout << str4 << endl;
	cout << str5 << endl;

	//基本赋值
	str = "hello";
	str2 = str4;

	//string &assign(const char *s,int n)//把字符串s的前n个字符赋给当前的字符串
	str3.assign("abcdef", 4);
	cout << str3 << endl;

	//string &assign(const string *s,int start,int n)//将s从start开始n个字符赋值给字符串
	string str6;
	str6.assign(str, 1, 3);//ell ? hel 从0索引

	cout << str6 << endl;

}


void test02()
{
	string s = "hello world";
	for (int i = 0; i < s.size(); i++)
	{
		//cout << s[i] << endl;
		cout << s.at(i) << endl;
	}
	//[]和at区别?[]访问越界,直接挂掉 at会抛出异常

	try
	{
		//cout << s[100] << endl;
		cout << s.at(100) << endl;
	}
	catch (out_of_range& e)
	{
		cout << e.what() << endl;
	}
	catch (...)
	{
		cout << "越界异常" << endl;
		
	}
}


void test03()
{
	//拼接
	string s1 = "我";
	string s2 = "爱北京";
	s1+=s2;
	cout << s1<< endl;
	s1.append("天安门");
	cout << s1 << endl;

	//find查找
	string s = "abcdefg";
	int pos = s.find("bcf");//找不到返回-1

	cout << "pos=" << pos << endl;

	int pos2 = s.rfind("bc");//rfind和find结果一样,内部查找方式不一样
	cout << "pos2=" << pos2 << endl;

	//替换
	string s3 = "hello";
	s3.replace(1, 3, "1111");//替换从pos开始n个字符为字符串str
	cout << s3 << endl;	//he1111o
}

void test04()
{
	string s1 = "bbc";
	string s2 = "abc";
	if (s1.compare(s2) == 0)
	{
		cout << "s1等于s2" << endl;
	}
	else if (s1.compare(s2)==1)
	{
		cout << "s1大于s2" << endl;
	}
	else
	{
		cout << "s1小于s2" << endl;
	}
}

void test05()
{
	string s1 = "abcde";
	string s2 = s1.substr(1, 3);
	cout <<"s2="<< s2 << endl;

	//需求,查找一个邮件的用户名
	string email = "zhangtao@sina.com";

	int pos=email.find("@");//
	cout << "pos" << pos << endl;

	string userName = email.substr(0, pos);
	cout << "用户名" << userName << endl;

}

void test06()
{
	string s1 = "hello";
	s1.insert(1, "111");
	cout << s1 << endl;//h111ello
	//删除111
	s1.erase(1, 3);
	cout << s1 << endl;
}

/*
string和c-style字符串转换
*/

void func(string s)
{
	cout << s << endl;
}

void func2(char *s)
{
	cout << s << endl;
}
void test07()
{
	string s = "abc";
	//string->char *

	const char *p = s.c_str();
	func(p);//const char *隐式类型转换为string

	//const char *->string 
	string s2(p);
	//func2(s2);//string 不能隐式类型转换成char *

}
void test08()
{
	string s = "abcdefg";
	char &a = s[2];
	char &b = s[3];

	a = '1';
	b = '2';
	cout << s << endl;
	cout << (int *)s.c_str() << endl;

	s = "pppppppppppppppp";
	/*a='1';
	b = '2';*/
	cout << s << endl;
	cout << (int *)s.c_str() << endl;
}

/*
写一个函数,函数内部string字符串中的所有小写字母都变成大写字母

*/
void test09()
{
	string s = "abCdEfg";

	for (int i = 0; i < s.size(); i++)
	{
		//s[i] = toupper(s[i]); 
		//全变小写
		s[i] = tolower(s[i]);
	}
	cout << s << endl;

}

int main()
{

	//test01();
	//test02();
	//test03();
	///test04();
	//test05();
	///test06();
	//test07();
	//test08();
	test09();
	system("pause");
	return 0;
}
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值