protected:
// 保护的获取写指针的成员函数
char_type* pbase() const { return_M_pbegin; } // 开头读指针
char_type* pptr() const { return_M_pnext; } // 当前读指针
char_type* epptr() const { return_M_pend; } // 结尾读指针
// 将写指针向移动n个字符
voidpbump(int__n) { _M_pnext += __n; }
// 从新设置读的三个指针
voidsetp(char_type* __pbegin, char_type* __pend) {
_M_pbegin = __pbegin;









