std::clog, std::wclog
De cppreference.com
|
|
This page has been machine-translated from the English version of the wiki using Google Translate.
The translation may contain errors and awkward wording. Hover over text to see the original version. You can help to fix errors and improve the translation. For instructions click here. |
| Defined in header <iostream>
|
||
| extern std::ostream clog; |
(1) | |
| extern std::wostream wclog; |
(2) | |
Los objetos globales std::clog y std::wclog salida de control a un búfer de la secuencia de aplicación definido por el tipo (derivado de std::streambuf), asociado con el stderr secuencia estándar de salida C, pero, a diferencia de std::cerr / std::wcerr, estas corrientes no se vacía automáticamente y no atar automáticamente ( ) 'd con cout .
Original:
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.
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
You can help to correct and verify the translation. Click here for instructions.
Estos objetos están garantizados para ser construido antes de la primera constructor de un objeto estático se llama y que están garantizados para sobrevivir a la última destructor de un objeto estático, por lo que siempre es posible escribir en std::clog en código de usuario .
Original:
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.
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
You can help to correct and verify the translation. Click here for instructions.
A menos que sync_with_stdio(false) se ha emitido, se puede acceder a estos objetos simultáneamente desde varios subprocesos, tanto para la salida con formato y sin formato .
Original:
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.
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
You can help to correct and verify the translation. Click here for instructions.
[editar] Ejemplo
Output:
static constructor main function static destructor
[editar] Ver también
| inicializa los objetos estándar de la corriente Original: initializes standard stream objects The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions. (miembro público of std::ios_base clase)
| |
| escribe en el flujo de error estándar de C stderr, unbuffered
(objeto global) Original: writes to the standard C error stream stderr, unbuffered (objeto global) The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions. | |
| escribe en el stdout
(objeto global) corriente estándar C de salida Original: writes to the standard C output stream stdout (objeto global) The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions. | |