C++ CMD 与 exe 一起输入
很抱歉出现这样的菜鸟问题,但是我怎样才能让程序读取我用程序输入的数据,就像 cmd 如何使用选项
shutdown.exe -f
如何将示例 -f
读入我的程序 一样?
Sorry for such a noobie question, but how can I get a program to read the data i input with my program, like how cmd does it with the options
shutdown.exe -f
how do i read the example -f
into my program?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
这应该打印出传递给程序的每个空格分隔的参数。
This should print out each of the whitespace delimited parameters which were passed to your program.
如果您使用的是普通的旧 C++,您的 main 函数将需要如下所示:
其中 argc 是空格分隔项的数量,argv 是指向每个项的指针数组
If you're using plain old C++, your main function will need to look something like this:
where argc is the number of whitespace separated items, and argv is an array of pointers to each one
参数通过
argv
传递。arguments are passed by
argv
.