我有一个读取硬编码文件路径的程序,我想让它从命令行读取文件路径。为此,我更改了这样的代码:
#include <iostream>
int main(char *argv[])
{
...
}
但是,argv[1]
以这种方式暴露的变量似乎是指针类型,我需要它作为字符串。我应该怎么做才能将此命令行参数转换为字符串?
我有一个读取硬编码文件路径的程序,我想让它从命令行读取文件路径。为此,我更改了这样的代码:
#include <iostream>
int main(char *argv[])
{
...
}
但是,argv[1]
以这种方式暴露的变量似乎是指针类型,我需要它作为字符串。我应该怎么做才能将此命令行参数转换为字符串?
它已经是一个 C 风格的字符串数组:
#include <iostream>
#include <string>
#include <vector>
int main(int argc, char *argv[]) // Don't forget first integral argument 'argc'
{
std::string current_exec_name = argv[0]; // Name of the current exec program
std::vector<std::string> all_args;
if (argc > 1) {
all_args.assign(argv + 1, argv + argc);
}
}
参数argc
是参数的计数加上当前的 exec 文件。
您可以创建一个std::string
#include <string>
#include <vector>
int main(int argc, char *argv[])
{
// check if there is more than one argument and use the second one
// (the first argument is the executable)
if (argc > 1)
{
std::string arg1(argv[1]);
// do stuff with arg1
}
// Or, copy all arguments into a container of strings
std::vector<std::string> allArgs(argv, argv + argc);
}
无需对此表示赞同。如果Benjamin Lindley将他的单行评论作为答案,那就太酷了,但既然他没有,那就这样吧:
std::vector<std::string> argList(argv, argv + argc);
如果您不想包含argv[0]
因此不需要处理可执行文件的位置,只需将指针加一:
std::vector<std::string> argList(argv + 1, argv + argc);
我不确定这是否是 100% 可移植的,但操作系统应该解析 args 的方式是扫描控制台命令字符串并在每个令牌的末尾插入一个 nil-term 字符,并且int main(int,char**)
不使用const char**
所以我们可以只需从第三个参数开始遍历 args(@note第一个 arg 是工作目录)并向后扫描到 nil-term char 并将其转换为空格,而不是从第二个参数的开头开始并向前扫描到零项字符。这是带有测试脚本的函数,如果您确实需要对多个 nil-term char 进行 un-nil-ify,请发表评论,以便我修复它;谢谢。
#include <cstdio>
#include <iostream>
using namespace std;
namespace _ {
/* Converts int main(int,char**) arguments back into a string.
@return false if there are no args to convert.
@param arg_count The number of arguments.
@param args The arguments. */
bool ArgsToString(int args_count, char** args) {
if (args_count <= 1) return false;
if (args_count == 2) return true;
for (int i = 2; i < args_count; ++i) {
char* cursor = args[i];
while (*cursor) --cursor;
*cursor = ' ';
}
return true;
}
} // namespace _
int main(int args_count, char** args) {
cout << "\n\nTesting ArgsToString...\n";
if (args_count <= 1) return 1;
cout << "\nArguments:\n";
for (int i = 0; i < args_count; ++i) {
char* arg = args[i];
printf("\ni:%i\"%s\" 0x%p", i, arg, arg);
}
cout << "\n\nContiguous Args:\n";
char* end = args[args_count - 1];
while (*end) ++end;
cout << "\n\nContiguous Args:\n";
char* cursor = args[0];
while (cursor != end) {
char c = *cursor++;
if (c == 0)
cout << '`';
else if (c < ' ')
cout << '~';
else
cout << c;
}
cout << "\n\nPrinting argument string...\n";
_::ArgsToString(args_count, args);
cout << "\n" << args[1];
return 0;
}
这很简单。只需这样做:
#include <iostream>
#include <vector>
#include <string.h>
int main(int argc, char *argv[])
{
std::vector<std::string> argList;
for(int i=0;i<argc;i++)
argList.push_back(argv[i]);
//now you can access argList[n]
}
@Benjamin Lindley 你是对的。这不是一个好的解决方案。请阅读 juanchopanza 的回答。
#include <iostream>
std::string commandLineStr= "";
for (int i=1;i<argc;i++) commandLineStr.append(std::string(argv[i]).append(" "));
因为打印我放置在变量中的参数的所有尝试都失败了,所以这里我的 2 个字节用于这个问题:
std::string dump_name;
(stuff..)
if(argc>2)
{
dump_name.assign(argv[2]);
fprintf(stdout, "ARGUMENT %s", dump_name.c_str());
}
注意 assign 的使用,以及 c_str() 函数调用的需要。