std::basic_streambuf::setp
来自cppreference.com
< cpp | io | basic streambuf
该页由英文版wiki使用Google Translate机器翻译而来。
该翻译可能存在错误或用词不当。鼠标停留在文本上可以看到原版本。你可以帮助我们修正错误或改进翻译。参见说明请点击这里. |
void setp( char_type* pbeg, char_type* pend ); |
||
设置定义放区域的指针的值。具体而言,在调用后pbase() == pbeg,pptr() == pbeg,epptr() == pend
原文:
Sets the values of the pointers defining the put area. Specifically, after the call pbase() == pbeg, pptr() == pbeg, epptr() == pend
目录 |
[编辑] 参数
pbeg | - | 指针的认沽地区的新的开始
原文: pointer to the new beginning of the put area |
pend | - | 指针到新的认沽
原文: pointer to the new end of the put area |
[编辑] 返回值
(无)
[编辑] 示例
本章尚未完成 原因:暂无示例 |
[编辑] 另请参阅
重新定位的开始,接着,和结束指针的输入序列中 原文: repositions the beginning, next, and end pointers of the input sequence (受保护的成员函数) |