有关于C++中string的erase函数的问题

在MSDN中对erase的声明为basic_string&erase(size_typep0=0,size_typen=npos);为什么这里第二个参数的默认值是npos... 在MSDN中对erase的声明为basic_string& erase(size_type p0=0,size_type n=npos);
为什么这里第二个参数的默认值是npos,而不是_Len,我看过一个string变量内部的数据成员,npos是一个巨大的不知所云的数,而_Len才是整个字符串所包含的字符数,而erase函数如果不指明第二个参数,将删除从索引的指定开始位置到字符串末尾的所有字符,照这么来说,第二个参数的默认值应该为字符串长度才对啊。这到底是怎么一回事?npos又是什么?
展开
 我来答
金鱼8884
2015-10-03 · 知道合伙人数码行家
金鱼8884
知道合伙人数码行家
采纳数:124 获赞数:14950
学生

向TA提问 私信TA
展开全部

erase函数的原型如下:
(1)string& erase ( size_t pos = 0, size_t n = npos );
(2)iterator erase ( iterator position );
(3)iterator erase ( iterator first, iterator last );
也就是说有三种用法:
(1)erase(pos,n); 删除从pos开始的n个字符,比如erase(0,1)就是删除第一个字符
(2)erase(position);删除position处的一个字符(position是个string类型的迭代器)
(3)erase(first,last);删除从first到last之间的字符(first和last都是迭代器)
下面给一个例子:

// string::erase
#include <iostream>
#include <string>
using namespace std;
int main ()
{
 string str ("This is an example phrase.");
 string::iterator it;
 // 第(1)种用法
 str.erase (10,8);
 cout << str << endl;        // "This is an phrase."
 // 第(2)种用法
 it=str.begin()+9;
 str.erase (it);
 cout << str << endl;        // "This is a phrase."
 // 第(3)种用法
 str.erase (str.begin()+5, str.end()-7);
 cout << str << endl;        // "This phrase."
 return 0;
}

假如是删除数组中的一项,并不能说明erase的用法。

xingyunbuzui
推荐于2016-02-22 · TA获得超过1160个赞
知道小有建树答主
回答量:346
采纳率:100%
帮助的人:388万
展开全部

npos就是表示无限大。



basic_string& erase(size_type p0=0,size_type n=npos);

表示从p0的位置,删除n个长度的字符。

  • 缺省p0等于0,表示从字符串头开始。

  • n缺省等于npos,表示删除p0以后的所有字符。 

本回答被提问者采纳
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
匿名用户
推荐于2018-03-17
展开全部
npos is a static member constant value with the greatest possible value for an element of type size_t.

This value, when used as the value for a len (or sublen) parameter in string's member functions, means "until the end of the string".

As a return value, it is usually used to indicate no matches.

This constant is defined with a value of -1, which because size_t is an unsigned integral type, it is the largest possible representable value for this type.
本回答被网友采纳
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
收起 更多回答(1)
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式