Visual C++测试项目不显示标准输出

发布于 2024-09-27 06:09:44 字数 79 浏览 5 评论 0原文

我创建了一个包含 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

梦里寻她 2024-10-04 06:09:44

您可以将标准输出重定向到文件并在某些自动刷新查看器中打开该文件。

更新:
我发现以下两种将标准输出重定向到文件的方法:

  1. cmd 方式: C:\Test>myWinApp.exe > log.txt
  2. powershell方式: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:

  1. cmd way: C:\Test>myWinApp.exe > log.txt
  2. powershell way: 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

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文