Difference between revisions of "cpp/io/clog"
m (Text replace - "/sidebar" to "/navbar") |
m (r2.7.3) (Robot: Adding de, es, fr, it, ja, pt, ru, zh) |
||
Line 47: | Line 47: | ||
{{dcl list template | cpp/io/dcl list cout}} | {{dcl list template | cpp/io/dcl list cout}} | ||
{{dcl list end}} | {{dcl list end}} | ||
+ | |||
+ | [[de:cpp/io/clog]] | ||
+ | [[es:cpp/io/clog]] | ||
+ | [[fr:cpp/io/clog]] | ||
+ | [[it:cpp/io/clog]] | ||
+ | [[ja:cpp/io/clog]] | ||
+ | [[pt:cpp/io/clog]] | ||
+ | [[ru:cpp/io/clog]] | ||
+ | [[zh:cpp/io/clog]] |
Revision as of 17:21, 2 November 2012
Template:ddcl list begin <tr class="t-dsc-header">
<td><iostream>
<td></td> <td></td> </tr> <tr class="t-dcl ">
<td ><td > (1) </td> <td class="t-dcl-nopad"> </td> </tr> <tr class="t-dcl ">
<td ><td > (2) </td> <td class="t-dcl-nopad"> </td> </tr> Template:ddcl list end
The global objects std::clog and std::wclog control output to a stream buffer of implementation-defined type (derived from std::streambuf), associated with the standard C output stream stderr, but, unlike std::cerr/std::wcerr, these streams are not automatically flushed and not automatically tie()'d with cout.
These objects are guaranteed to be constructed before the first constructor of a static object is called and they are guaranteed to outlive the last destructor of a static object, so that it is always possible to write to std::clog in user code.
Unless sync_with_stdio(false) has been issued, it is safe to concurrently access these objects from multiple threads for both formatted and unformatted output.
Example
#include <iostream> struct Foo { int n; Foo() { std::clog << "static constructor\n"; } ~Foo() { std::clog << "static destructor\n"; } }; Foo f; // static object int main() { std::clog << "main function\n"; }
Output:
static constructor main function static destructor