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