MSVS 12,C++,命令参数不起作用
Posted
技术标签:
【中文标题】MSVS 12,C++,命令参数不起作用【英文标题】:MSVS 12, C++, command arguments not working 【发布时间】:2015-01-30 02:10:18 【问题描述】:我在 Microsoft Visual Studio 12 中使用 C++。我想传递命令行参数。我尝试在 MSVS 的 Project/Properties/Debugging/Command Arguments 字段中列出它们,并且我也尝试使用 CLIArgsMadeEasy 插件,但它从来没有用过。 argc 始终为 1,其中 argv[0] 是应用程序路径。 示例:给定一个我想用三个 args 启动的 fred.exe 程序:a,b,c 即相当于 cmd 窗口行的
fred.exe a b c
我将提供的编辑框中的参数完全指定为:
a b c
使用上述任何一种方法(MSVS 标准或 CLIArgsMadeEasy),但是当我运行它们时,它们没有通过。
代码是:
#include <iostream> // for standard I/O
#include <string> // for strings
#include <iomanip> // for controlling float print precision
#include <sstream> // string to number conversion
#include <math.h>
using namespace std;
int main(int argc, char *argv[])
...
【问题讨论】:
您是否在 VS 中以调试模式运行程序? 项目属性 → 调试 → 命令参数 1) 是的,我在 VS 中运行从调试模式。我正在构建并运行一个版本,因为它不起作用我改为调试。 X64。 2)根据我的帖子,我确实尝试了项目属性→调试→命令参数(之后我安装了 CLIArgsMadeEasy 插件,但没有帮助) 对于其他有类似问题的人,在我的 VS 2015 上,项目属性可能(功能?)在您最近打开的最后一个我已经在我的视觉工作室中尝试过这个程序,它可以工作:
#include <iostream> // for standard I/O
#include <string> // for strings
#include <iomanip> // for controlling float print precision
#include <sstream> // string to number conversion
#include <math.h>
using namespace std;
int main(int argc, char *argv[])
for(int i = 1; i < argc; i++)
cout << i << ":" << argv[i] << endl;
return 0;
【讨论】:
以上是关于MSVS 12,C++,命令参数不起作用的主要内容,如果未能解决你的问题,请参考以下文章