C++从 IDE 调试时来自文件的标准输入

发布于 2024-08-27 16:56:46 字数 127 浏览 13 评论 0原文

我正在使用 VS 2010,我想知道如何让我的 C++ 程序在调试时使用标准输入读取文件。我知道如何从命令提示符执行此操作,但在调试时不知道。

基本上我希望它用 cin>> 读取文件而不是我在调试模式下输入内容。

I'm using VS 2010, and I'm wondering how I can get my c++ program to read a file using standard input while debugging. I know how to do it from command prompt, but not when debugging.

Basically I want it to read in a file with cin>> instead of me typing stuff - but in debug mode.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(3

甜味拾荒者 2024-09-03 16:56:46

如果您进入项目的“属性”,在“调试”下有一组关于如何实际启动该进程的选项。 IIRC 执行此操作的方法是将:

< yourfile.txt

在命令参数框中。

If you go into the project's Properties, under Debugging there's a set of options for how to actually launch the process. IIRC the way to do this is to put:

< yourfile.txt

In the Command Arguments box.

明媚如初 2024-09-03 16:56:46

我从来没有尝试过这个(我通常会有一个接受文件输入的调试路径),但是这个 MS Connect 错误报告声称重定向运算符在 VS2005 中工作但在 VS2008 中停止工作:

我正在调试一个使用 stdin & 的控制台应用程序。 stdout,预计将被重定向到文件。我在调试配置属性的命令参数中使用“<”和“>”来重定向标准输入和标准输出。但是,当我开始调试标准输入来自控制台并在控制台打印标准输出时。这在 VS2005 中可以正常工作,并且根据 VS2008 帮助应该仍然可以工作。

MS 声称已经在某个时候解决了这个问题,所以也许它会在 2010 年再次发挥作用?

I've never tried this (I'll usually have a debug path that accepts input from a file), but this MS Connect bug report claims that redirection operators worked in VS2005 but stopped working in VS2008:

I am debugging a console application that uses stdin & stdout, which are expected to be redirected to files. I use "<" and ">" in the Command Arguments in the Debugging Configuration Properties to redirect stdin and stdout. However, when I start debugging stdin comes from the console and stdout prints at the console. This worked correctly in VS2005 and should still work per VS2008 Help.

MS claims to have fixed the problem at some point, so maybe it's working again in 2010?

假面具 2024-09-03 16:56:46

在解决方案资源管理器中右键单击该项目,然后转到“属性”。然后单击左侧的“调试”,并在“命令参数”框中键入类似 <输入.txt

Right-click on the project in the Solution Explorer and go to Properties. Then click on "Debugging" on the left and in the "Command Arguments" box type something like < input.txt

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