How to redefine clog to tee to original clog and a log file?(如何将木屐重新定义为原始木屐和日志文件?)
问题描述
我在这里看到了一个有用的开始:
I saw a useful start here:
http://www.cs.technion.ac.il/~imaman/programs/teestream.html
制作一个新的流,它可以同时进入堵塞和日志文件.
And it works great to make a new stream which goes to both clog and a log file.
但是,如果我尝试将 clog 重新定义为新流,它将不起作用,因为新流与 clog 具有相同的 rdbuf(),因此以下内容无效:
However, if I try to redefine clog to be the new stream it does not work because the new stream has the same rdbuf() as clog so the following has no effect:
clog.rdbuf(myTee.rdbuf());
那么如何修改 tee 类以拥有自己的 rdbuf(),然后它可以成为 clog 的目标?
So how can I modify the tee class to have its own rdbuf() which can then be the target of clog?
谢谢.
-威廉
推荐答案
如果你真的想继续为 tee 使用 std::clog 而不是将输出发送到不同的流,你需要工作低一级:而不是源自ostream,源自streambuf.然后你可以这样做:
If you really want to keep using std::clog for the tee instead of sending output to a different stream, you need to work one level lower: Instead of deriving from ostream, derive from streambuf. Then you can do this:
fstream logFile(...);
TeeBuf tbuf(logFile.rdbuf(), clog.rdbuf());
clog.rdbuf(&tbuf);
有关如何派生自己的 streambuf 类的更多信息,请参阅 此处.
For more information on how to derive your own streambuf class, see here.
这篇关于如何将木屐重新定义为原始木屐和日志文件?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:如何将木屐重新定义为原始木屐和日志文件?


基础教程推荐
- 如何在 C++ 中初始化静态常量成员? 2022-01-01
- 如何将 std::pair 的排序 std::list 转换为 std::map 2022-01-01
- 在 C++ 中计算滚动/移动平均值 2021-01-01
- 如何通过C程序打开命令提示符Cmd 2022-12-09
- 这个宏可以转换成函数吗? 2022-01-01
- 常量变量在标题中不起作用 2021-01-01
- 我有静态或动态 boost 库吗? 2021-01-01
- C++结构和函数声明。为什么它不能编译? 2022-11-07
- 静态库、静态链接动态库和动态链接动态库的 .lib 文件里面是什么? 2021-01-01
- 如何检查GTK+3.0中的小部件类型? 2022-11-30