string容器部分API复习(C++)

13 篇文章 0 订阅

注: 文章为本人为方便复习而写,若有朋友要参考,本文的不清楚的地方可以留言,也可以参考其他网页。

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

//string类底层用char*实现

//构造器
/*
默认构造:string()
C++风格拷贝构造string(const string& str)
C风格字符串构造:string(const char* s)
字符填充构造:string(size_t n,char c)
*/
void test01() {
	string s1; //默认构造
	string s2("win");
	cout << s2 << endl;
	string s3(s2);
	cout << s3 << endl;
	string s4(10, 'a'); //10个a来初始化s4
	cout << s4 << endl;
}

//赋值操作
/*
1.用重载=
c风格字符:string& operator=(char c)
c风格字符串:string& operator=(const char* s)
用string类对象:string& operator=(const string& s)

2.用重载的assign
string& assign(const char* s)
string& assign(const string& s)
string& assign(const char* s,int n) //用字符串s的前n个字符赋值
string& assign(int n,char c)    //用n个字符串c赋值
*/
void test02() {
	string s1;
	s1 = 'A';
	cout << s1 << endl;
	s1 = "i must win";
	cout << s1 << endl;
	string s2;
	s2 = s1;
	cout << s2 << endl;

	s2.assign("i love you");
	cout << s2 << endl;
	s2.assign(s1);
	cout << s2 << endl;
	s2.assign("moneyloveme", 3);
	cout << s2 << endl;
	s2.assign(4, 'z');
	cout << s2 << endl;
}

//字符串拼接
/*
1.重载+=
string& operator+=(const char c)
string& operator+=(const char* str)
string& operator+=(const string& str)

2.重载append
string& append(const char* s)
string& append(const string& s)
string& append(const char* s,int n) //把字符串s的前n个字符拼接到当前字符串结尾
string& append(const string& s,int pos,int n) //把字符串s中从pos下标开始的n个字符拼接到结尾
*/
void test03() {
	string s1("love");
	cout << s1 << endl;
	s1 += 'l';
	cout << s1 << endl;
	s1 += "me";
	cout << s1 << endl;
	string s2(4, 'm');
	s1 += s2;
	cout << s1 << endl;

	s1.append("kao");
	cout << s1 << endl;
	s1.append(s2);
	cout << s1 << endl;
	s1.append("world", 2);
	cout << s1 << endl;
	string s3 = "1234567890";
	s1.append(s3, 2, 4); //pos从0开始算,即数组下标
	cout << s1 << endl;
}

//查找
/*
int find(const char c,int pos=0) const; //从pos位置开始,查找字符第一次出现的位置
int find(const char* s,int pos=0) const; //查找字符串s第一次出现的位置
int find(const string& str,int pos=0)const;
int find(const char* s,int pos,int n) const; //从pos位置查找s的前n个字符第一次出现

int rfind()const 
*/
void test04() {
	string s1("never give up:)"); //下标从0开始

	//find:找第一次出现的位置
	//查找成功返回对应的下标,失败返回-1
	int pos = s1.find('v');
	if (pos != -1)
		cout << pos << endl; //2
	pos = s1.find("ver");
	if (pos != -1)
		cout << pos << endl; //2
	string str("er");
	pos = s1.find(str);
	if (pos != -1)
		cout << pos << endl; //3
	pos = s1.find("rever", 0, 1); //从下标s1的下标0开始查找“rever”中的r第一次在s1中出现的位置
	if (pos != -1)
		cout << pos << endl;

	//rfind:最后一次出现的位置
	string s2("ve");
	pos = s1.rfind(s2); //8
	if (pos != -1)
		cout << pos << endl;
}

//替换
/*
//用字符串s替换当前字符串的从pos下标位置开始的n个字符
string& replace(int pos,int n,const char* s)
string& replace(int pos,int n,const string& s)
*/
void test05() {
	string s1("promising man");
	s1.replace(0, 9, "hopeful");
	cout << s1 << endl;
	string s2("human");
	s1.replace(8, 3, s2); 
	cout << s1 << endl;
}

//比较
/*
1.接口
int compare(const string& s)const;  //当前字符串与字符串s想比较
int cpmpare(const char* s)const;

2.比较规则:
① 遇到第一个不相同的字符即停止比较,比较这两个不相同的字符的大小,此时用ASCII码比较;
② 如果其中的一个字符串扫描结束,字符都相同,就按长度比。
*/
void test06() {
	string s1("abcde");
	int flag = s1.compare("b");
	cout << flag << endl;  //-1

	flag = s1.compare("abcdef");
	cout << flag << endl; //-1

	string s2("ABCDE");
	flag = s1.compare(s2);
	cout << flag << endl;  //1

	//大写字母的ASCII值小于小写字母的ASCII码
	string s3 = "ABCDEFGHJKL"; 
	flag = s1.compare(s3);
	cout << flag << endl;  //1

	flag = s1.compare("abcde");
	cout << flag << endl; //0

	flag = s1.compare("abcd"); 
	cout << flag << endl; //1
}

//访问字符:字符存取
void test07() {
	string s1("heartbeat");
	for (int i(0); i < int(s1.size()); ++i)
		if (s1[i] >= 'a' && s1[i] <= 'z')
			s1[i] -= 32; //小写变大写
	cout << s1 << endl;
	for (int i(0); i < (int)s1.length(); ++i)
		if (s1.at(i) >= 'A' && s1.at(i) <= 'Z')
			s1.at(i) += 32; //大写变小写
	cout << s1 << endl;
}

//插入和删除
/*
1.插入
string& insert(int pos,const char* s); 在指定下标位置pos前插入字符串s
string& insert(int pos,const string& s);
string& insert(int pos,int n,char c); 在指定下标位置pos前插入n个字符c

2.删除
string& erase(int pos,int n=npos) //删除从下标pos开始的n个字符,包含pos位置
*/
void test08() {
	string s1("abcde");
	cout << s1 << endl;
	s1.insert(2, "1111"); //在下标2,即c字符前插入
	cout << s1 << endl;   //ab1111cde
	
	string s2(4, '2');
	s1.insert(1, s2);
	cout << s1 << endl;

	s1.insert(0, 4, '4');
	cout << s1 << endl;

	//删除
	s1.erase(0, 4);   //删除从下标0开始的4个字符
	cout << s1 << endl;

	s1.erase();  //直接清空字符串
	cout << s1.size() << endl;
}

//获取子串
//string substr(int pos,int n=npos); //从下标位置pos开始截取n个子符作为子串返回
void test09() {
	//获取邮箱的用户名
	string email = "libai@163.com";
	int pos = email.find('@');
	string userName = email.substr(0, pos);
	cout << "用户名:" << userName << endl;

	string s = email.substr(pos + 1); //个数不写,默认到字符串结尾
	cout << s << endl;  //163.com
}

int main() {
	/*cout << "********构造器********" << endl;
	test01();*/
	/*cout << "********赋值**********" << endl;
	test02();*/
	/*cout << "********拼接**********" << endl;
	test03();*/
	/*cout << "*********查找************" << endl;
	test04();*/
	/*cout << "*********替换************" << endl;
	test05();*/
	/*cout << "*********比较************" << endl;
	test06();*/
	/*cout << "**********访问************" << endl;
	test07();*/
	/*cout << "**********插入和删除************" << endl;
	test08();*/
	cout << "**********获取子串************" << endl;
	test09();

	system("pause");
	return 0;
}
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值