VS 没有使用我传入的“命令参数”运行。我做错了什么?
尝试在 Visual Studio 中使用“命令参数”。
我将其分解为 C 语言中的一个简单的小 ConsoleApplication 程序。
#include "pch.h"
#include <iostream>
int main(int argc, char *argv[])
{
printf("\nargv: ");
for (int i = 0; i < argc; i++)
{
printf(" %s", argv[i]);
}
printf("\n");
}
然后我设置“命令参数”:项目:属性:调试:“命令参数”:妈妈
我点击 RUN 按钮并显示(我的参数未传入):
argv: C:\Users\jack\source\repos\ConsoleApplication45\Debug\ConsoleApplication45.exe
C:\Users\jack\source\repos\ConsoleApplication45\Debug\ConsoleApplication45.exe (process 1812) exited with code 0.
To automatically close the console when debugging stops, enable Tools->Options->Debugging->Automatically close the console when debugging stops.
Press any key to close this window . . .
当我从命令行运行时,我得到(使用传入的参数按我的意愿工作:“妈妈”):
C:\Users\jack\source\repos\ConsoleApplication45\Debug>ConsoleApplication45.exe mom
argv: ConsoleApplication45.exe mom
C:\Users\jack\source\repos\ConsoleApplication45\Debug>
感谢您提供链接 Jean-François Fabre:
是的,我必须从 x86 更改为 x64。