当前位置: 首页 > news >正文

C++---cout、cerr、clog

在C++编程里,coutcerrclog是标准库提供的重要输出流对象,在数据输出方面发挥着关键作用。

一、cout:标准输出流

coutstd::ostream 类的对象,其作用是向标准输出设备(一般是控制台)输出数据。它和 C 语言中的 printf 函数类似,但 cout 具有类型安全和运算符重载的优势,使用起来更加方便。

1. 基本用法

借助 << 运算符,能把各种类型的数据输出到 cout

#include <iostream>
using namespace std;int main() {int num = 42;double pi = 3.14159;string name = "Alice";cout << "Hello, World!" << endl;cout << "Number: " << num << endl;cout << "Pi: " << pi << endl;cout << "Name: " << name << endl;return 0;
}

输出结果如下:

Hello, World!
Number: 42
Pi: 3.14159
Name: Alice
2. 格式化输出

通过操纵符(如 setwsetprecision 等)或者成员函数(像 width()precision()),可以对输出格式进行控制。

#include <iostream>
#include <iomanip>
using namespace std;int main() {double value = 123.456789;// 设置宽度和填充字符cout << setw(10) << setfill('*') << 42 << endl;  // 输出:********42// 设置精度cout << fixed << setprecision(3) << value << endl;  // 输出:123.457// 科学计数法cout << scientific << value << endl;  // 输出:1.234568e+02// 布尔值以文字形式输出cout << boolalpha << true << endl;  // 输出:truereturn 0;
}
3. 链式输出

<< 运算符返回的是对 cout 对象的引用,所以可以进行链式输出。

int a = 10, b = 20;
cout << "a = " << a << ", b = " << b << endl;  // 输出:a = 10, b = 20
4. 重定向输出

可以利用 rdbuf() 函数对 cout 的输出缓冲区进行重定向。

#include <iostream>
#include <fstream>
using namespace std;int main() {ofstream file("output.txt");streambuf* oldBuf = cout.rdbuf();  // 保存原来的缓冲区cout.rdbuf(file.rdbuf());  // 将输出重定向到文件cout << "This will be written to the file." << endl;cout.rdbuf(oldBuf);  // 恢复原来的输出cout << "This will be written to the console." << endl;file.close();return 0;
}

二、cerr:标准错误流

cerr 同样是 std::ostream 类的对象,它专门用于输出错误信息。和 cout 的主要区别在于,cerr 的输出是不经过缓冲的,会立即显示在终端上。

1. 基本用法

当程序出现错误时,可使用 cerr 输出错误信息。

#include <iostream>
using namespace std;int main() {ifstream file("nonexistent.txt");if (!file.is_open()) {cerr << "Error: Could not open file!" << endl;return 1;}// 其他操作return 0;
}
2. 无缓冲特性

cerr 的输出不会被缓冲,这在需要立即显示错误信息的场景下非常重要。

// 模拟一个长时间运行的进程
for (int i = 0; i < 1000000; ++i) {if (i % 100000 == 0) {cerr << "Processing iteration " << i << endl;  // 立即显示}// 处理逻辑
}
3. 重定向错误输出

cout 一样,cerr 的输出也能被重定向。

ofstream errorFile("errors.log");
streambuf* oldBuf = cerr.rdbuf();
cerr.rdbuf(errorFile.rdbuf());cerr << "This error will be logged to errors.log" << endl;cerr.rdbuf(oldBuf);  // 恢复

三、clog:标准日志流

clog 也是 std::ostream 类的对象,用于输出日志信息。它和 cerr 的区别在于,clog 的输出是经过缓冲的。

1. 基本用法

clog 适用于记录程序的执行状态等日志信息。

#include <iostream>
using namespace std;void log(const string& message) {clog << "[LOG] " << message << endl;
}int main() {log("Starting application...");// 程序逻辑log("Application terminated successfully.");return 0;
}
2. 缓冲特性

clog 的输出会先被存储在缓冲区中,直到缓冲区满或者遇到刷新操作。

clog << "This is a log message.";  // 可能不会立即显示
clog << flush;  // 手动刷新缓冲区
3. 日志重定向

同样可以对 clog 的输出进行重定向。

ofstream logFile("app.log");
clog.rdbuf(logFile.rdbuf());clog << "Logging to file..." << endl;  // 写入文件

四、三者的对比与选择

特性coutcerrclog
缓冲机制有缓冲无缓冲有缓冲
默认输出目标标准输出标准错误标准错误
典型应用场景普通程序输出错误信息日志记录
是否可重定向
选择建议:
  • 当需要输出程序的正常结果时,应使用 cout
  • 遇到错误情况,需要立即显示错误信息时,要使用 cerr
  • 进行程序调试或者记录执行状态等日志操作时,适合使用 clog

五、高级应用场景

1. 自定义流缓冲区

可以通过继承 streambuf 类来创建自定义的流缓冲区。

class MyBuffer : public streambuf {
protected:int overflow(int c) override { //override C++11 特性,显式声明该函数重写基类的虚函数,提高代码安全性if (c != traits_type::eof()) { //获取流特性中定义的 EOF(文件结束符)值// 自定义处理逻辑cout << "*" << static_cast<char>(c) << "*";}return traits_type::not_eof(c);}
};// 使用自定义缓冲区
MyBuffer buf;
ostream customOut(&buf);
customOut << "Test" << endl;  // 输出:*T*e*s*t*
2. 多线程环境下的输出

在多线程环境中使用输出流时,需要进行同步操作,以避免输出混乱。

#include <iostream>
#include <mutex>
#include <thread>
using namespace std;mutex coutMutex;void worker(int id) {lock_guard<mutex> lock(coutMutex);cout << "Thread " << id << " is working." << endl;
}int main() {thread t1(worker, 1);thread t2(worker, 2);t1.join();t2.join();return 0;
}
3. 结合 RAII 管理流重定向

利用 RAII(资源获取即初始化)技术,可以更安全地管理流重定向。

class StreamRedirect {
public:StreamRedirect(ostream& stream, streambuf* newBuf): stream(stream), oldBuf(stream.rdbuf()) {stream.rdbuf(newBuf);}~StreamRedirect() {stream.rdbuf(oldBuf);}private:ostream& stream;streambuf* oldBuf;
};// 使用示例
ofstream file("output.txt");
{StreamRedirect redirect(cout, file.rdbuf());cout << "Redirected output" << endl;  // 写入文件
}  // 离开作用域时自动恢复

六、注意事项

  1. 性能考量

    • 无缓冲的输出(如 cerr)会带来一定的性能开销,所以在性能敏感的场景中应当谨慎使用。
    • 有缓冲的输出(如 coutclog)在频繁刷新缓冲区时,也可能会影响性能。
  2. 线程安全

    • 标准输出流本身并不是线程安全的,在多线程环境下使用时需要进行同步处理。
  3. 资源管理

    • 重定向流缓冲区后,要确保在适当的时候恢复原来的缓冲区。

七、总结

  • cout:是最常用的输出流,适用于普通的程序输出,输出内容会被缓冲。
  • cerr:主要用于输出错误信息,输出不会被缓冲,能保证错误信息立即显示。
  • clog:适用于记录日志,输出会被缓冲,有助于提高性能。
http://www.xdnf.cn/news/1140715.html

相关文章:

  • PYTHON日志神器nb_log详细介绍和使用说明
  • leetcode:单词接龙[图广搜][无权图找最短路径]
  • C# 转换(引用转换)
  • 超简单linux上部署Apache
  • React + Mermaid 图表渲染消失问题剖析及 4 种代码级修复方案
  • B 站关键词排名提高之账号互助术:矩阵助攻,流量起飞
  • OpenAI最强ChatGPT智能体发布:技术突破与应用前景分析
  • 前端项目利用Gitlab CI/CD流水线自动化打包、部署云服务
  • 乙烯丙烯酸酯橡胶市场报告:性能优势、行业现状与发展前景​
  • 【现有资料整理】灵枢 - 用于医学领域的 SOTA 多模态大语言模型
  • Java Set 集合详解:从基础语法到实战应用,彻底掌握去重与唯一性集合
  • Pythonday17
  • 群晖中相册管理 immich大模型的使用
  • C++ :vector的介绍和使用
  • MyBatis:配置文件完成增删改查_添加
  • 【RAG实战】用户反馈如何关联算法优化
  • Redisson 分布式锁
  • 构建智能客服Agent:从需求分析到生产部署
  • 使用 jar -xvf 解压JAR文件无反应怎么办?
  • 打车代驾 app 订单管理系统模块搭建
  • IDEA高效开发:Database Navigator插件安装与核心使用指南
  • Android studio和gradle升级后的一些错误
  • 进阶向:智能图像增强系统
  • 零售快销行业中线下巡店AI是如何颠覆传统计算机视觉识别的详细解决方案
  • Python爬虫入门到实战(3)-对网页进行操作
  • Linux 定时任务全解析:atd 与 crond 的区别及实战案例(含日志备份 + 时间写入)
  • 黑马Node.js全套入门教程,nodejs新教程含es6模块化+npm+express+webpack+promise等_ts对象笔记
  • 【问题解决】npm包下载速度慢
  • AI与BI的融合挑战:Strategy平台的差异化优势
  • 小白学Python,网络爬虫篇(2)——selenium库