共用方式為


cerr

資料流緩衝區的物件 cerr 控制輸出與物件 stderr,宣告在 <cstdio>。

extern ostream cerr;

傳回值

ostream 物件。

備註

物件控制項會緩衝資料插入至做為位元組資料流輸出的標準錯誤。 一次建構,運算式 cerr.旗標&unitbuf 為非零和 cerr.tie() == &cout。

範例

// iostream_cerr.cpp
// compile with: /EHsc
#include <iostream>
#include <fstream>

using namespace std;

void TestWide( ) 
{
   int i = 0;
   wcout << L"Enter a number: ";
   wcin >> i;
   wcerr << L"test for wcerr" << endl;
   wclog << L"test for wclog" << endl;   
}

int main( ) 
{
   int i = 0;
   cout << "Enter a number: ";
   cin >> i;
   cerr << "test for cerr" << endl;
   clog << "test for clog" << endl;
   TestWide( );
}

輸入

3
1

範例輸出

Enter a number: 3
test for cerr
test for clog
Enter a number: 1
test for wcerr
test for wclog

需求

標題: <iostream>

命名空間: std

請參閱

參考

ostream

iostream 程式設計

iostreams 慣例