c++ -- STL容器--string

2. string容器

2.1 简介

① string是C++风格的字符串,而string本质上是一个类。

② string 和 char * 区别:

  1. char * 是一个指针

  1. string 是一个类,类内部封装了 char *,管理这个字符串是一个char型容器。

③ string特点:

  1. string类内部封装了很多成员方法。

  1. 例如,查找find,拷贝copy,删除delete,替换replace,插入insert。

  1. string管理char * 所分配的内存,不用担心复制越界和取值越界等,由类内部进行负责。

2.2 构造函数

① string构造函数原型:

  1. string(); // 创建一个空的字符串 例如:string str;

  1. string(const char * s); // 使用字符串s初始化

  1. string(const string & str); // 使用一个string对象初始化另一个string对象

  1. string(int n,char c); //使用n个字符c初始化

② string的多种构造方式没有可比性,灵活使用即可。

运行结果:

  • s1 =

  • s2 = hello world

  • s3 = hello world

  • s4 = aaaaaaaaaa

  • 请按任意键继续. . .

2.3 赋值操作

① 给string字符串进行赋值。

② 赋值的函数原型:

  1. string& operator=(const char* s); //char * 类型字符串赋值给当前的字符串

  1. string& operator=(const strinng &s); //把字符串s赋给当前的字符串

  1. string& operator=(char c); //字符赋值给当前的字符串

  1. string& assign(const char *s); //把字符串s赋给当前的字符串

  1. string& assign(const char *s,int n); //把字符串s的前n个字符赋给当前的字符串

  1. string& assign(const string &s); //把字符串s赋给当前字符串

  1. string& assign(int n, char c); //用n个字符c赋给当前字符串

③ string的赋值方式很多,operator=这种方式是比较常用的

运行结果:

  • str1 = hello world

  • str2 = hello world

  • str3 = a

  • str4 = hello C++

  • str5 = hello

  • str6 = hello

  • str7 = wwwwwwwwww

  • 请按任意键继续. . .

2.4 字符串拼接

① 实现在字符串末尾拼接字符串。

② 函数原型:

  1. string& operator+=(const char* str); //重载+=操作符

  1. string& operator+=(const char c); //重载+=操作符

  1. string& operator+=(const string& str); //重载+=操作符

  1. string& append+=(const char* s); //把字符串s连接到当前字符串结尾

  1. string& append+=(const char* s, int n); //把字符串s的前n个字符连接到当前字符串结尾

  1. string& append+=(const string &s); //同operator+=(const string& str)

  1. string& append+=(const char &s, int pos, int n); //字符串s从pos开始的n个字符连接到字符串结尾

运行结果:

  • str1 = 我爱玩游戏

  • str1 = 我爱玩游戏:

  • str1 = 我爱玩游戏: LOL DNF

  • str3 = I love

  • str3 = I love game

  • str3 = I love game LOL DNF

  • str3 = I love game LOL DNF LOL

  • 请按任意键继续. . .

2.5 字符串查找和替换

① 查找:查找指定字符串是否存在。

② 替换:在指定的位置替换字符串。

③ 函数原型:

//查找str第一次出现位置,从pos开始查找

  1. int find(const string& str, int pos = 0) const;

// 查找s第一次出现位置,从pos开始查找

  1. int find(const char* s, int pos = 0) const;

//从pos位置查找s的前n个字符第一次位置

  1. int find(const char* s, int pos, int n) const;

//查找字符c第一次出现位置

  1. int find(const char c, int pos = 0) const;

//查找str最后一次位置,从pos开始查找

  1. int rfind(const string& str, int pos = npos) const;

//查找s最后一次出现位置,从pos开始查找

  1. int rfind(const char* s, int pos = npos) const;

//从pos查找s的前n个字符最后一次位置

  1. int rfind(const char* s, int pos, int n) const;

//查找字符c最后一次出现位置

  1. int rfind(const char c, int pos = 0) const;

//替换从pos开始n个字符为字符串str

  1. string& replace(int pos, int n, const string& str) const;

//替换从pos开始的n个字符为s

  1. string& replace(int pos, int n, const string* s) const;

④ find查找是从左往右,rfind从右往左。

⑤ find找到字符串后返回查找的第一个字符位置,找不到返回-1。

⑥ replace在替换时,要知道从哪个位置起,多少个字符,替换成什么样的字符串。

运行结果:

  • 找到字符串 pos = 3

  • pos=7

  • str1= a1111efg

  • 请按任意键继续. . .

2.6 字符串比较

① 功能描述:字符串之间比较。

② 比较方式:字符串比较是按字符的ASCII码进行对比。

  1. = 返回 0

  1. > 返回 1

  1. < 返回 -1

③ 函数原型:

  1. int compare(const string & s) const; //与字符串s比较

  1. int compare(const char * s) const; //与字符串s比较

运行结果:

  • str1 等于 str2

  • 请按任意键继续. . .

2.7 字符串存取

① string中单个字符存取方式有两种:

  1. char& operator[](int n); //通过[]方式取字符

  1. char& at(int n); //通过at方式取字符

运行结果:

  • str= hello

  • h e l l o

  • h e l l o

  • str= xello

  • str= xxllo

  • 请按任意键继续. . .

2.8 字符串插入和删除

① 功能描述:对string字符串进行插入和删除字符操作。

② 函数原型:

  1. string& insert(int pos, const char * s); // 插入字符串

  1. string& insert(int pos, const string& str); //插入字符串

  1. string& insert(int pos, int n, char c); //在指定位置插入n个字符c

  1. string& erase(int pos, int n = npos); //删除从Pos开始的n个字符

③ 插入和删除的起始下标都是从0开始。

运行结果:

  • str = h111ello

  • str = hello

  • 请按任意键继续. . .

2.9 子串获取

① 功能描述:从字符串中获取想要的子串。

② 函数原型:

  1. string substr(int pos = 0, int n = npos) const; //返回由pos开始的n个字组成的字符串。

③ 灵活的运用求子串功能,可以在实际开发中获取有效的信息。

运行结果:

  • subStr = bcd

  • 8

  • zhangsan

  • 请按任意键继续. . .

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值