C++中err是什么意思

如题所述

第1个回答  2008-05-28
我也觉得是不是cerr
或者是c语言

cerr是标准错误输出,是没有缓冲的,发送给它的内容立即被输出。

预先定义的ostream类对象用来完成标准设备的输出,包括4个;
1,cout,标准输出
2,cerr,
3,cin,
4,clog,类似cerr,但有缓冲,缓冲满是被输出
第2个回答  2008-05-27
err
An error output stream for the service. Data written to the stream is automatically redirected to the event log as error events using the event source specified to jntsvc. Each line printed to the stream results in a new event. Multiple lines can be written by synchronizing on this object and using setServiceAutoDumpErr to temporarily turn off auto-logging, as shown in the following example:

synchronized (err)
{
boolean oldautodump = setServiceAutoDumpErr(false);
err.println("Line 1");
err.println("Line 2");
setServiceAutoDumpErr(oldautodump);
err.flush();
}本回答被提问者采纳
第3个回答  2008-05-27
是错误的意思
很肯定的告诉你哦
o(∩_∩)o...

因为刚学完
第4个回答  2008-05-27
你问的应该是cerr把
是标准错误输出....