Namespaces
Variants
Views
Actions

std::basic_istream<CharT,Traits>::unget

From cppreference.com
< cpp‎ | io‎ | basic istream
Revision as of 04:47, 16 October 2013 by Eendy (Talk | contribs)

 
 
 
 
basic_istream& unget();

Makes the most recently extracted character available again.

If eofbit flag is set before the call, the function fails (sets failbit and returns).

(until C++11)

First clears eofbit.

(since C++11)

Then the function behaves as Template:concept. After constructing and checking the sentry object, calls rdbuf()->sungetc().

If rdbuf()->sungetc() returns Traits::eof(), calls setstate(badbit).

In any case, sets the gcount() counter to zero.

Contents

Parameters

(none)

Return value

*this

Exceptions

failure if an error occurred (the error state flag is not goodbit) and exceptions() is set to throw for that state.

If an internal operation throws an exception, it is caught and badbit is set. If exceptions() is set for badbit, the exception is rethrown.

Example

#include <sstream>
#include <iostream>
 
int main()
{
    std::istringstream s1("Hello, world.");
    char c1 = s1.get();
    if (s1.unget())
    {
        char c2 = s1.get();
        std::cout << "Got: " << c1 << " got again: " << c2 << '\n';
    }
}

Output:

Got: H got again: H

See also

moves the next pointer in the input sequence back by one
(public member function of std::basic_streambuf<CharT,Traits>) [edit]
extracts characters
(public member function) [edit]
reads the next character without extracting it
(public member function) [edit]
puts a character into input stream
(public member function) [edit]