C++ “你好世界” Boost T 恤示例程序
Boost C++ 库具有函数模板 tee
类模板 tee_filter 和 tee_device 提供了两种分割输出序列的方法 以便所有数据同时定向到两个不同的位置。
我正在寻找一个完整的 C++ 示例,使用 Boost tee 输出到标准输出和“sample.txt”等文件。
The Boost C++ library has Function Template tee
The class templates tee_filter and tee_device provide two ways to split an output sequence
so that all data is directed simultaneously to two different locations.
I am looking for a complete C++ example using Boost tee to output to standard out and to a file like "sample.txt".
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
根据约翰链接的问题的帮助:
Based on help from the question John linked:
下面是一个使用
tee_filter
的示例,我目前正在使用它来处理 Boost.Test 输出:Here's an example using
tee_filter
I'm currently using to tee my Boost.Test output: