std::basic_streambuf<CharT,Traits>::gbump

来自cppreference.com
< cpp‎ | io‎ | basic streambuf
 
 
 
 
void gbump( int count );

跳过获取区中的 count 个字符。通过令获取指针前进 count 个字符。不为下溢做检查。

参数

count - 要跳过的字符数

返回值

(无)

注意

因为此函数接收 int ,故它无法操纵大于 std::numeric_limits<int>::max() 字符的缓冲区( LWG 255 )。

示例

参阅

令输出序列中的下一位置指针前进
(受保护成员函数)