basic_istream::unget
将最近读取的字符回流。
basic_istream<Elem, Tr>& unget( );
返回值
流(*this)。
备注
非格式化输入函数 在流放回上一个元素,如有可能,就象通过调用 rdbuf - >sungetc。 如果 rdbuf 是null指针,或者,如果对 sungetc 的调用返回 traits_type::eof,函数调用 setstate(badbit)。 在任一情况下,它将返回 *this。
有关如何 unget 的信息可能会失败,请参见 basic_streambuf::sungetc。
示例
// basic_istream_unget.cpp
// compile with: /EHsc
#include <iostream>
using namespace std;
int main( )
{
char c[10], c2;
cout << "Type 'abc': ";
c2 = cin.get( );
cin.unget( );
cin.getline( &c[0], 9 );
cout << c << endl;
}
abc
FakePre-071702c02dd14bdda8598c83ba865424-7e8ca572045442f882203dcf82d19069
要求
标头: <istream>
命名空间: std