basic_istream::putback
将指定字符到流中。
basic_istream<Elem, Tr>& putback(
char_type _Ch
);
参数
- _Ch
放置的字符回流。
返回值
流(*this)。
备注
非格式化输入函数 使 _Ch,如果可能,就象通过调用 rdbuf->sputbackc。如果rdbuf是null指针,或者,如果对 sputbackc 的调用返回 traits_type::eof,函数调用 setstate(badbit)。在任一情况下,它将返回 *this。
示例
// basic_istream_putback.cpp
// compile with: /EHsc
#include <iostream>
using namespace std;
int main( )
{
char c[10], c2, c3;
c2 = cin.get( );
c3 = cin.get( );
cin.putback( c2 );
cin.getline( &c[0], 9 );
cout << c << endl;
}
要求
标头: <istream>
命名空间: std