如何在 C++/Windows 中输出到控制台 [英] How to output to the console in C++/Windows

查看:39
本文介绍了如何在 C++/Windows 中输出到控制台的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

在 Linux 上的 C++ 中使用 iostream 时,它会在终端中显示程序输出,但在 Windows 中,它只是将输出保存到 stdout.txt 文件中.在 Windows 中,如何使输出显示在控制台中?

When using iostream in C++ on Linux, it displays the program output in the terminal, but in Windows, it just saves the output to a stdout.txt file. How can I, in Windows, make the output appear in the console?

推荐答案

既然你提到了stdout.txt,我就用谷歌搜索看看究竟是什么会创建一个stdout.txt;通常,即使使用 Windows 应用程序,控制台输出也会发送到分配的控制台,如果没有分配,则不会发送到任何地方.

Since you mentioned stdout.txt I google'd it to see what exactly would create a stdout.txt; normally, even with a Windows app, console output goes to the allocated console, or nowhere if one is not allocated.

因此,假设您使用的是 SDL(这是唯一会产生 stdout.txt 的东西),您应该遵循建议 这里.使用CON"打开标准输出和标准错误,或者在那里执行其他链接器/编译解决方法.

So, assuming you are using SDL (which is the only thing that brought up stdout.txt), you should follow the advice here. Either freopen stdout and stderr with "CON", or do the other linker/compile workarounds there.

如果链接再次断开,这正是从 libSDL 中引用的内容:

In case the link gets broken again, here is exactly what was referenced from libSDL:

如何避免创建 stdout.txt 和 stderr.txt?

How do I avoid creating stdout.txt and stderr.txt?

我相信在 SDL 附带的 Visual C++ 项目中有一个 SDL_nostdio 目标 > 你可以构建它做你想做的事(TM)."

"I believe inside the Visual C++ project that comes with SDL there is a SDL_nostdio target > you can build which does what you want(TM)."

如果您定义NO_STDIO_REDIRECT"并重新编译 SDL,我认为它会解决问题."> >(由 Bill Kendrick 提供答案)

"If you define "NO_STDIO_REDIRECT" and recompile SDL, I think it will fix the problem." > > (Answer courtesy of Bill Kendrick)

这篇关于如何在 C++/Windows 中输出到控制台的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆