Note
Access to this page requires authorization. You can try signing in or changing directories.
Access to this page requires authorization. You can try changing directories.
basic_istream::read
basic_istremm& read(E *s, streamsize n);
The unformatted input function extracts up to n
elements and stores them in the array beginning at s
. Extraction stops early on end-of-file, in which case the function calls setstate
(failbit)
. In any case, it returns *this
.