在使用 VSlick 进行调试时,有没有办法使用输入文件而不是标准输入?

发布于 2024-11-28 23:12:09 字数 211 浏览 0 评论 0原文

我正在尝试调试一个接受来自 stdin 的输入的 C++ 程序(使用 getch())。我需要使用 VSlick 和输入文件对其进行调试。我需要一些可以像我运行我的程序一样运行的东西: myProgram < myInputFile

但显然是在 Vslick 内。

我尝试使用 '<; myInputFile' 作为命令行参数但无济于事。

10倍

I am trying to debug a C++ program that accepts input from stdin (using getch()). I need to debug it using VSlick and an input file. I need something that would run as if i ran my program like so: myProgram < myInputFile

but obviously, within Vslick.

i tried using the '< myInputFile' as command line arguments but to no avail.

10x

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

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

发布评论

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

评论(2

格子衫的從容 2024-12-05 23:12:09

这是你可以做的事情

freopen("input.txt","r",stdin);  //For input from input.txt
freopen("output.txt","w",stdout); //for output to output.txt

Here is something u can do

freopen("input.txt","r",stdin);  //For input from input.txt
freopen("output.txt","w",stdout); //for output to output.txt
梦里兽 2024-12-05 23:12:09

在项目属性(工具)中,您可以定义调试和执行的命令行。

In Project properties (tools), you can define your command line for Debug and Execute.

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