When the uppercase format flag is set, uppercase (capital) letters are used instead of lowercase for representations on insert operations involving stream-generated letters, like some hexadecimal representations and numerical base prefixes.
This flag can be unset with the nouppercase manipulator, not forcing the use of uppercase for generated letters.
The uppercase 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 |
|
The execution of this example displays something similar to:
0X4D 0x4d |
See also
| nouppercase | Do not generate upper case letters (manipulator function) |
| ios_base::flags | Get/set format flags (public member function) |
| ios_base::setf | Set specific format flags (public member function) |
| ios_base::unsetf | Clear specific format flags (public member function) |
