hao

Results 1 issues of hao

// 删除 [first, last) 的元素 template typename basic_string::iterator basic_string:: erase(const_iterator first, const_iterator last) { if (first == begin() && last == end()) { clear(); return end(); } const size_type n...