3
什麼時候在C++中使用std::clog
和std::cerr
?什麼時候使用以及C++中clog和cerr之間的區別
clog << "test" << endl;
和cerr << "test" << endl;
有何區別?
是否clog << "0"
沒有endl
直接打印沒有緩衝?
什麼時候在C++中使用std::clog
和std::cerr
?什麼時候使用以及C++中clog和cerr之間的區別
clog << "test" << endl;
和cerr << "test" << endl;
有何區別?
是否clog << "0"
沒有endl
直接打印沒有緩衝?
'std :: clog'用於記錄,'std :: cerr'用於顯示錯誤。簡單。 – 2013-03-01 01:59:54