Visual C++测试项目不显示标准输出
我创建了一个包含 printf 语句的 Visual C++ 测试项目。不幸的是,我找不到查看其输出的方法。它不包含在输出窗口中。有什么建议吗?
I created a Visual C++ test project which contains printf statements. Unfortunately, I can't find a method to view the output of this. It isn't included in the output window. Any suggestions?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以将标准输出重定向到文件并在某些自动刷新查看器中打开该文件。
更新:
我发现以下两种将标准输出重定向到文件的方法:
C:\Test>myWinApp.exe > log.txt
PS C:\Test> .\myWinApp.exe 2>&1 | out-file log.txt
如果您想实时查看输出,您可以在某些具有自动刷新选项的文件查看器中打开 log.txt。 查看链接
You can redirect standard output to a file and open this file in some auto-refreshing viewer.
UPDATE:
Here are two ways to redirect standard output to a file, that I found:
C:\Test>myWinApp.exe > log.txt
PS C:\Test> .\myWinApp.exe 2>&1 | out-file log.txt
If you want to view the output in real time, you can open log.txt in some file viewer with auto-refreshing option. see link