版权说明:本文档由用户提供并上传,收益归属内容提供方,若内容存在侵权,请进行举报或认领
文档简介
1、. 标准c+中string类函数介绍注意不是CString之所以抛弃char*的字符串而选用C+标准程序库中的string类,是因为他和前者比拟起来,不必担忧存是否足够、字符串长度等等,而且作为一个类出现,他集成的操作函数足以完成我们大多数情况下(甚至是100%)的需要。我们可以用 = 进展赋值操作,= 进展比拟,+ 做串联是不是很简单。我们尽可以把它看成是C+的根本数据类型。好了,进入正题首先,为了在我们的程序中使用string类型,我们必须包含头文件 。如下:#include /注意这里不是string.h string.h是C字符串头文件#include using namespace
2、std;1声明一个C+字符串声明一个字符串变量很简单:string Str;这样我们就声明了一个字符串变量,但既然是一个类,就有构造函数和析构函数。上面的声明没有传入参数,所以就直接使用了string的默认的构造函数,这个函数所作的就是把Str初始化为一个空字符串。String类的构造函数和析构函数如下:a) string s; /生成一个空字符串sb) string s(str) /拷贝构造函数生成str的复制品c) string s(str,strid*) /将字符串str始于位置strid*的局部当作字符串的初值d) string s(str,strid*,strlen) /将字符串st
3、r始于strid*且长度顶多strlen的局部作为字符串的初值e) string s(cstr) /将C字符串作为s的初值f) string s(chars,chars_len) /将C字符串前chars_len个字符作为字符串s的初值。g) string s(num,c) /生成一个字符串,包含num个c字符h) string s(beg,end) /以区间beg;end(不包含end)的字符作为字符串s的初值i) s.string() /销毁所有字符,释放存都很简单,我就不解释了。2字符串操作函数这里是C+字符串的重点,我先把各种操作函数罗列出来,不喜欢把所有函数都看完的人可以在这里找自己
4、喜欢的函数,再到后面看他的详细解释。a) =,assign() /赋以新值b) swap() /交换两个字符串的容c) +=,append(),push_back() /在尾部添加字符d) insert() /插入字符e) erase() /删除字符f) clear() /删除全部字符g) replace() /替换字符h) + /串联字符串i) =,!=,=,pare() /比拟字符串j) size(),length() /返回字符数量k) ma*_size() /返回字符的可能最大个数l) empty() /判断字符串是否为空m) capacity() /返回重新分配之前的字符容量n) r
5、eserve() /保存一定量存以容纳一定数量的字符o) , at() /存取单一字符p) ,getline() /从stream读取*值q) ,=,=,=,!=,甚至支持string与C-string的比拟(如 str,=,=这些操作符的时候是根据当前字符特性将字符按字典顺序进展逐一得比拟。字典排序靠前的字符小,比拟的顺序是从前向后比拟,遇到不相等的字符就按这个位置上的两个字符的比拟结果确定两个字符串的大小。同时,string (aaaa) string(aaaaa)。另一个功能强大的比拟函数是成员函数pare()。他支持多参数处理,支持用索引值和长度定位子串来进展比拟。他返回一个整数来表示
6、比拟结果,返回值意义如下:0-相等0-大于 从输入流读取一个string。2用于输入,同样重载运算符operator,=,时返回1,时返回-1,=时返回0 string的子串:string substr(int pos = 0,int n = npos) const;/返回pos开场的n个字符组成的字符串string的交换:void swap(string &s2); /交换当前字符串与s2的值string类的查找函数:int find(char c, int pos = 0) const;/从pos开场查找字符c在当前字符串的位置int find(const char *s, int pos
7、 = 0) const;/从pos开场查找字符串s在当前串中的位置int find(const char *s, int pos, int n) const;/从pos开场查找字符串s中前n个字符在当前串中的位置int find(const string &s, int pos = 0) const;/从pos开场查找字符串s在当前串中的位置/查找成功时返回所在位置,失败返回string:npos的值 int rfind(char c, int pos = npos) const;/从pos开场从后向前查找字符c在当前串中的位置int rfind(const char *s, int pos
8、= npos) const;int rfind(const char *s, int pos, int n = npos) const;int rfind(const string &s,int pos = npos) const;/从pos开场从后向前查找字符串s中前n个字符组成的字符串在当前串中的位置,成功返回所在位置,失败时返回string:npos的值 int find_first_of(char c, int pos = 0) const;/从pos开场查找字符c第一次出现的位置int find_first_of(const char *s, int pos = 0) const;i
9、nt find_first_of(const char *s, int pos, int n) const;int find_first_of(const string &s,int pos = 0) const;/从pos开场查找当前串中第一个在s的前n个字符组成的数组里的字符的位置。查找失败返回string:npos int find_first_not_of(char c, int pos = 0) const;int find_first_not_of(const char *s, int pos = 0) const;int find_first_not_of(const char
10、*s, int pos,int n) const;int find_first_not_of(const string &s,int pos = 0) const;/从当前串中查找第一个不在串s中的字符出现的位置,失败返回string:npos int find_last_of(char c, int pos = npos) const;int find_last_of(const char *s, int pos = npos) const;int find_last_of(const char *s, int pos, int n = npos) const;int find_last_o
11、f(const string &s,int pos = npos) const; int find_last_not_of(char c, int pos = npos) const;int find_last_not_of(const char *s, int pos = npos) const;int find_last_not_of(const char *s, int pos, int n) const;int find_last_not_of(const string &s,int pos = npos) const;/find_last_of和find_last_not_of与fi
12、nd_first_of和find_first_not_of相似,只不过是从后向前查找string类的替换函数:string &replace(int p0, int n0,const char *s);/删除从p0开场的n0个字符,然后在p0处插入串sstring &replace(int p0, int n0,const char *s, int n);/删除p0开场的n0个字符,然后在p0处插入字符串s的前n个字符string &replace(int p0, int n0,const string &s);/删除从p0开场的n0个字符,然后在p0处插入串sstring &replace(
13、int p0, int n0,const string &s, int pos, int n);/删除p0开场的n0个字符,然后在p0处插入串s中从pos开场的n个字符string &replace(int p0, int n0,int n, char c);/删除p0开场的n0个字符,然后在p0处插入n个字符cstring &replace(iterator first0, iterator last0,const char *s);/把first0,last0之间的局部替换为字符串sstring &replace(iterator first0, iterator last0,const
14、char *s, int n);/把first0,last0之间的局部替换为s的前n个字符string &replace(iterator first0, iterator last0,const string &s);/把first0,last0之间的局部替换为串sstring &replace(iterator first0, iterator last0,int n, char c);/把first0,last0之间的局部替换为n个字符cstring &replace(iterator first0, iterator last0,const_iterator first, const_
15、iterator last);/把first0,last0之间的局部替换成first,last之间的字符串string类的插入函数:string &insert(int p0, const char *s);string &insert(int p0, const char *s, int n);string &insert(int p0,const string &s);string &insert(int p0,const string &s, int pos, int n);/前4个函数在p0位置插入字符串s中pos开场的前n个字符string &insert(int p0, int n
16、, char c);/此函数在p0处插入n个字符citerator insert(iterator it, char c);/在it处插入字符c,返回插入后迭代器的位置void insert(iterator it, const_iterator first, const_iterator last);/在it处插入first,last之间的字符void insert(iterator it, int n, char c);/在it处插入n个字符cstring类的删除函数iterator erase(iterator first, iterator last);/删除first,last之间的
17、所有字符,返回删除后迭代器的位置iterator erase(iterator it);/删除it指向的字符,返回删除后迭代器的位置string &erase(int pos = 0, int n = npos);/删除pos开场的n个字符,返回修改后的字符串string类的迭代器处理:string类提供了向前和向后遍历的迭代器iterator,迭代器提供了访问各个字符的语法,类似于指针操作,迭代器不检查围。用string:iterator或string:const_iterator声明迭代器变量,const_iterator不允许改变迭代的容。常用迭代器函数有:const_iterator begin()const;iterator begin(); /返回string的起始位置const_iterator end()const;iterator end(); /返回string的最后一个字符后面的位置const_iterator rbegin()const;iterator rbegin(); /返回string的最后一个字符的位置const_iterator rend()const;iterator rend(); /返回string第一个字符位置的前面rbegin和rend用于从后向前
温馨提示
- 1. 本站所有资源如无特殊说明,都需要本地电脑安装OFFICE2007和PDF阅读器。图纸软件为CAD,CAXA,PROE,UG,SolidWorks等.压缩文件请下载最新的WinRAR软件解压。
- 2. 本站的文档不包含任何第三方提供的附件图纸等,如果需要附件,请联系上传者。文件的所有权益归上传用户所有。
- 3. 本站RAR压缩包中若带图纸,网页内容里面会有图纸预览,若没有图纸预览就没有图纸。
- 4. 未经权益所有人同意不得将文件中的内容挪作商业或盈利用途。
- 5. 人人文库网仅提供信息存储空间,仅对用户上传内容的表现方式做保护处理,对用户上传分享的文档内容本身不做任何修改或编辑,并不能对任何下载内容负责。
- 6. 下载文件中如有侵权或不适当内容,请与我们联系,我们立即纠正。
- 7. 本站不保证下载资源的准确性、安全性和完整性, 同时也不承担用户因使用这些下载资源对自己和他人造成任何形式的伤害或损失。
最新文档
- 欧亚共同体课程设计
- 自动驾驶技术应用总结
- 体育娱乐行业人力资源总结
- 新媒体行业技术工作概览
- 音响行业演出场地卫生消毒方案
- 食品安全销售总结
- 非公开发行股票认购协议三篇
- 2024年税务师题库(轻巧夺冠)
- 2024年美术教案7篇合集
- 2024年福建开放大学《网络测试与故障维修》形成性考核参考试题库(含答案)
- 2024年度无人机部件委托生产加工合同
- 中华人民共和国建筑法
- 心里疏导课件教学课件
- 统编版2024-2025学年语文五年级上册日积月累专项训练练习题
- 基于机器学习的供应链风险预测
- 2024-2025年职业技能:全国高速公路收费员从业资格知识考试题库与答案
- 阜阳师范大学《法学概论》2023-2024学年期末试卷
- 新版中国食物成分表
- 2024河南郑州市金水区事业单位招聘45人历年高频难、易错点500题模拟试题附带答案详解
- 湘教版八年级音乐下册教案全册
- 食物损失和浪费控制程序
评论
0/150
提交评论