std::clog, std::wclog
提供: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) | |
グローバルオブジェクトの標準C出力ストリームstd::clogに関連付けられている実装定義型(std::wclog由来)のストリームバッファへstd::streambufとstderr制御出力が、std::cerr/std::wcerr、これらのストリームが自動的にフラッシュされていないと自動的に提携されていないとは違って( COUTで) 'D.
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.
これらのオブジェクトは、静的オブジェクトの最初のコンストラクタが呼び出される前に建設されることが保証されて、彼らは、それがユーザーコードでstd::clogに書き込みすることは常に可能であるように、静的オブジェクトの最後のデストラクタよりも長生きすることが保証されています.
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.
sync_with_stdio(false)が発行されていない限り、それは同時にフォーマットし、フォーマットされていない出力の両方に複数のスレッドからこれらのオブジェクトにアクセスしても安全です.
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.
[編集] 例
Output:
static constructor main function static destructor
[編集] も参照してください
| 標準ストリームオブジェクトを初期化します 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. (publicメンバクラスof std::ios_base)
| |
| 標準Cのエラーストリームに書き込むstderr、unbuffered
(グローバルオブジェクト) Original: writes to the standard C error stream stderr, unbuffered (グローバルオブジェクト) The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions. | |
| 標準C出力ストリームstdout
(グローバルオブジェクト)に書き込みます Original: writes to the standard C output stream stdout (グローバルオブジェクト) The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions. | |