Reference
C Library
IOstream Library
Strings library
STL Containers
STL Algorithms
Miscellaneous
IOstream Library
manipulators
classes:
filebuf
fstream
ifstream
ios
iostream
ios_base
istream
istringstream
ofstream
ostream
ostringstream
streambuf
stringbuf
stringstream
objects:
cerr
cin
clog
cout
types:
fpos
streamoff
streampos
streamsize
manipulators
boolalpha
dec
endl
ends
fixed
flush
hex
internal
left
noboolalpha
noshowbase
noshowpoint
noshowpos
noskipws
nounitbuf
nouppercase
oct
resetiosflags
right
scientific
setbase
setfill
setiosflags
setprecision
setw
showbase
showpoint
showpos
skipws
unitbuf
uppercase
ws


nounitbuf

manipulator function
<ios>
ios_base& nounitbuf ( ios_base& str );

Do not force flushes after insertions

Clears the unitbuf "format" flag for the str stream.

When the unitbuf flag is not set, the associated buffer is not forced to be flushed after every insertion operation.

This flag can be set with the unitbuf manipulator, forcing flushes after every insertion.

The unitbuf flag is not set in standard streams on initialization.

Parameters

str
Stream object where to apply.
Because this function is a manipulator, it is designed to be used alone with no arguments in conjunction with the insertion (<<) and extraction (>>) operations on streams (see example below).

Return Value

A reference to the stream object.

Example

1
2
3
4
5
6
7
8
9
10
// nounitbuf example
#include <fstream>
using namespace std;
int main () {
  ofstream outfile ("test.txt");
  outfile << nounitbuf <<  "Test " << "file" << endl;
  outfile.close();
  return 0;
}


See also