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.
Specifies that variables of type bool appear as 1 or 0 in the stream.
ios_base& noboolalpha(
ios_base& _Str
);
Parameters
- _Str
A reference to an object of type ios_base, or to a type that inherits from ios_base.
Return Value
A reference to the object from which _Str is derived.
Remarks
By default, noboolalpha is in effect.
noboolalpha effectively calls _Str.unsetf(ios_base::boolalpha), and then returns _Str.
boolalpha reverses the effect of noboolalpha.
Example
See boolalpha for an example of using noboolalpha.
Requirements
Header: <ios>
Namespace: std