本文介绍了如何打印整个istream标准输出和字符串的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
如何将istream变量打印到标准输出。
我试图调试一个场景,其中我需要输出一个istream到日志文件
How do you print an istream variable to standard out. I am trying to debug a scenario wherein I need to ouput an istream to a log file
推荐答案
你输出istream的streambuf。
You ouput the istream's streambuf.
例如,要输出ifstream到cout:
For example, to output an ifstream to cout:
std::ifstream f("whatever");
std::cout << f.rdbuf();
这篇关于如何打印整个istream标准输出和字符串的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!