预定义的对象clog是ostream类的一个实例,clog对象附属到标准错误设备,通常也是显示屏,但是clog对象是缓冲的,这意味着每个流插入到clog都会先存储在缓冲区,知道缓冲填满或者缓冲区刷新时才会输出
clog也是与流插入运算符<<结合使用的,如下所示
#include <iostream>
using namespace std;
int main()
{
char str[]="unable to read";
clog<<"error message:"<<str<<endl;
}
显示结果
error message :unable to read;