如何在 Visual C 中使用命令行参数运行控制台应用程序 6.0?
我有一个控制台应用程序,可以使用 Visual C++ 6.0 编译和执行,但它只能告诉我缺少命令行参数。 似乎没有任何明显的地方可以输入这些。 如何使用命令行参数运行或调试它?
I've got a console application that compiles and executes fine with Visual C++ 6.0, except that it will then only get as far as telling me about missing command line parameters. There doesn't seem to be anywhere obvious to enter these. How do I run or debug it with command line parameters?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
我假设您正在谈论设置在 IDE 中运行的命令行参数。
打开“项目/设置”属性页并转到“调试”选项卡。
您可以将它们放入“程序参数”字段中。
I assume you're talking about setting the command line parameters for running in the IDE.
Open the Project/Settings property page and go to the Debug tab.
There's a "Program arguments" field you can put them into.
如果我没记错的话,在“项目/设置/调试”选项卡下有一个可以输入命令行参数的地方。 这是“程序参数”字段。
If I remember correctly, under Project/Settings/Debug tab there is a place to enter the command line parameters. It's the "Program arguments" field.
在VS2010中:
右键单击该项目。
选择属性。
选择“调试”选项卡。
启动选项-> 命令行参数:在此处输入参数。
In VS2010:
Right click the project.
Select Properties.
Select Debug tab.
Start Options -> Command line arguments: Enter the arguments here.