std::basic_streambuf::pbase, std::basic_streambuf::pptr, std::basic_streambuf::epptr
来自cppreference.com
< cpp | io | basic streambuf
该页由英文版wiki使用Google Translate机器翻译而来。
该翻译可能存在错误或用词不当。鼠标停留在文本上可以看到原版本。你可以帮助我们修正错误或改进翻译。参见说明请点击这里. |
char_type* pbase() const; |
(1) | |
char_type* pptr() const; |
(2) | |
char_type* epptr() const; |
(3) | |
返回的指针定义把区域.
1) 原文:
Returns pointers defining the put area.
返回的指针认沽区开始.....
2) 原文:
Returns the pointer to the beginning of the put area.
返回的指针到当前字符(“把指针”)在认沽区域.
3) 原文:
Returns the pointer to the current character (put pointer) in the put area.
返回指针的认沽区.....
原文:
Returns the pointer to the end of the put area.
目录 |
[编辑] 参数
(无)
[编辑] 返回值
1)的开头的指针的放区域.
2) 原文:
The pointer to the beginning of the put area.
指针到当前字符(“把指针”),认沽.
3) 原文:
The pointer to the current character (put pointer) in the put area.
认沽区的指针结束.
原文:
The pointer to the end of the put area.
[编辑] 示例
本章尚未完成 原因:暂无示例 |
[编辑] 另请参阅
返回一个指针,开始的时候,当前的字符和结束的get区 原文: returns a pointer to the beginning, current character and the end of the get area (受保护的成员函数) |