标签:返回值 string 字母 长度 substr const int 等于 iterator
string& erase (size_t pos = 0, size_t len = npos); //如果是int类型的话,str.erase(pos)是从pos位置开始删除到最后,因为默认len=pos,等于字符串的长度.
character (2)
iterator erase (const_iterator p);//注意类型,const_iterator 类型时是删除指定的位置.
标签:返回值 string 字母 长度 substr const int 等于 iterator
原文地址:https://www.cnblogs.com/Stephen-Qin/p/10171407.html