在使用 VSlick 进行调试时,有没有办法使用输入文件而不是标准输入?
我正在尝试调试一个接受来自 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
这是你可以做的事情
Here is something u can do
在项目属性(工具)中,您可以定义调试和执行的命令行。
In Project properties (tools), you can define your command line for Debug and Execute.