std::basic_ostream<CharT,Traits>::operator<<
basic_ostream& operator<<( bool value );
|
(1) | |
basic_ostream& operator<<( long value );
|
(2) | |
basic_ostream& operator<<
(
unsigned
long value )
;
|
(3) | |
basic_ostream& operator<<
(
long
long value )
;
|
(4) | (since C++11) |
basic_ostream& operator<<
(
unsigned
long
long value )
;
|
(5) | (since C++11) |
basic_ostream& operator<<( double value );
|
(6) | |
basic_ostream& operator<<
(
long
double value )
;
|
(7) | |
basic_ostream& operator<<
(
const
void
* value )
;
|
(8) | |
basic_ostream& operator<<
(
const
volatile
void
* value )
;
|
(9) | (since C++23) |
basic_ostream& operator<<
(
std::nullptr_t
)
;
|
(10) | (since C++17) |
basic_ostream& operator<<( short value );
|
(11) | |
basic_ostream& operator<<( int value );
|
(12) | |
basic_ostream& operator<<
(
unsigned
short value )
;
|
(13) | |
basic_ostream& operator<<
(
unsigned
int value )
;
|
(14) | |
basic_ostream& operator<<( float value );
|
(15) | |
basic_ostream& operator<<
(
/* extended-floating-point-type */ value )
;
|
(16) | (since C++23) |
basic_ostream& operator<<
(
std::basic_streambuf
<CharT, Traits>
* sb )
;
|
(17) | |
basic_ostream& operator<<
(
std::ios_base & ( *func) ( std::ios_base & ) ) ; |
(18) | |
basic_ostream& operator<<
(
std::basic_ios <CharT, Traits> & ( *func) ( std::basic_ios <CharT, Traits> & ) ) ; |
(19) | |
basic_ostream& operator<<
(
std::basic_ostream
<CharT, Traits>
&
(
*func)
|
(20) | |
Inserts data into the stream.
badbit
- static_cast < long > ( static_cast < unsigned short > (value) ) , if flags( ) & std::ios_base::basefield is std::ios_base::oct or std::ios_base::hex
- static_cast<long>(value)
- static_cast < long > ( static_cast < unsigned int > (value) ) , if flags( ) & std::ios_base::basefield is std::ios_base::oct or std::ios_base::hex
- static_cast<long>(value)
- If the rank is less than or equal to that of double, inserts static_cast<double>(value) as in (6)
- Otherwise, if the rank is less than or equal to that of long double, inserts static_cast < long double > (value) as in (7)
- Otherwise, an invocation of this overload is conditionally supported with implementation-defined semantics.
-
- end-of-file occurs on the input sequence;
- inserting in the output sequence fails (in which case the character to be inserted is not extracted);
- an exception occurs (in which case the exception is caught).
failbit
and, if failbit
is set in exceptions()
Parameters
value | - | integer, floating-point, boolean, or pointer value to insert |
func | - | function to call |
sb | - | pointer to the stream buffer to read the data from |
Return value
Notes
There are no overloads for pointers to non-static members, pointers to volatiles,(until C++23) or function pointers (other than the ones with signatures accepted by the (18-20)
- Attempting to output such objects invokes implicit conversion to bool, and, for any non-null pointer value, the value 1 is printed (unless
boolalpha
was set, in which case true
Character and character string arguments (e.g., of type char or const char*) are handled by the non-member overloads of operator<<
- Attempting to output a character using the member function call syntax (e.g., std::cout.operator << ( 'c' ) ; ) will call one of the overloads in (2-5) or (11-14)
- Attempting to output a character string using the member function call syntax will call overload (8) and print the pointer value instead.
Overload (10) was added by the resolution of LWG issue 2221
Example
#include <iomanip> #include <iostream> #include <sstream> int fun() { return 42; } int main() { std::istringstream input(" \"Some text.\" "); double f = 3.14; bool b = true; std::cout << fun() // int overload (12) << ' ' // non-member overload << std::boolalpha // function overload (18) << b // bool overload (1) << " " // non-member overload << std::fixed // function overload (18) again << f // double overload (6) << input.rdbuf() // streambuf overload << fun // bool overload (1): there's no overload for int(*)() << std::endl; // function overload (18) again int x = 0; int* p1 = &x; volatile int* p2 = &x; std::cout << "p1: " << p1 << '\n' // `const void*` overload, prints address << "p2: " << p2 << '\n'; // before C++23 (P1147): bool overload :), because // operator<<(const void*) is not a match, as it discards the `volatile` // qualifier. To fix this, C++23 adds `const volatile void*` overload (9), // that prints the address as expected. }
Possible output:
42 true 3.140000 "Some text." true p1: 0x7ffcea766600 p2: 0x7ffcea766600
Defect reports
The following behavior-changing defect reports were applied retroactively to previously published C++ standards.
DR | Applied to | Behavior as published | Correct behavior |
---|---|---|---|
LWG 117 | C++98 | overloads (1-8,11-15) delegated the insertion to num_put::put, but it does not have overloads for short, unsigned short, int, unsigned int, and float |
they are converted before being passed to num_put::put
|
LWG 567 | C++98 | overload (17) behaved as a FormattedOutputFunction
because of the resolution of LWG issue 60 |
it behaves as an UnformattedOutputFunction |
See also
inserts character data or insert into rvalue stream (function template) |
|
performs stream input and output on strings (function template) |
|
(C++17)
|
performs stream output on string views (function template) |
performs stream input and output of bitsets (function template) |
|
serializes and deserializes a complex number (function template) |
|
(C++11)
|
performs stream input and output on pseudo-random number engine (function template) |
(C++11)
|
performs stream input and output on pseudo-random number distribution (function template) |
inserts a character (public member function) |
|
inserts blocks of characters (public member function) |
|
(C++17)
|
converts an integer or floating-point value to a character sequence (function) |