现在,我正在尝试让我的程序正确地重新命名我在命令行中传递给它的标志。以下命令行./MineEscape --container BINARY infile.txt正常工作,因为MineEscape是可执行文件的名称。但是,我遇到了使这个命令行工作的问题,./MineEscape --verbose 15 -c PAIRING infile.txt> outfile.txt
另请注意,命令行的必需标志是--container和一种容器,如PAIRING或BINARY。以及--verbose后面应该跟一个整数。
当运行不正确的命令行时,我遇到了详细部分的问题,说有一个段错误。
int main(int argc,char **argv){
struct arguments{
bool binary;
bool poorMan;
bool sorted;
bool pairing;
int outputStatistics;
} choice;
const struct option longOpts[]{
{"help",optional_argument,NULL,'h'},
{"container",required_argument,NULL,'c'},
{"verbose",optional_argument,NULL,'v'}
};
stringstream ss;
int opt=0,longIndex=0;
opt=getopt_long(argc,argv,"v:c:h",longOpts,&longIndex);
while(opt!=-1){
switch(opt){
case 'h':
//Print out description of executable
exit(0);
break;
case 'c':
if(!strcmp("BINARY",optarg))
choice.binary=1;
else if(!strcmp("POOR_MAN",optarg))
choice.poorMan=1;
else if(!strcmp("SORTED",optarg))
choice.sorted=1;
else if(!strcmp("PAIRING",optarg))
choice.pairing=1;
else{
ss<<"Sorry, not a valid container implementation\n";
cout<<ss.str();
exit(0);
}
break;
case 'v':
if(atoi(optarg)>0)
choice.outputStatistics=atoi(optarg);
else{
ss<<"Sorry, requires a value greater than 0\n";
cout<<ss.str();
exit(0);
}
break;
default:
break;
}
opt=getopt_long(argc,argv,"v:c:h",longOpts,&longIndex);
}
}
答案 0 :(得分:1)
你会发现'optarg'的值为NULL,尽管它被指定为“v:”。
我发现是否使用了“-v3”或“-v 3”,例如解析确定。但是“--verbose 3”失败并且“--verbose = 3”有效。
奇怪的是,这种行为似乎只与可选参数有关。
此link有更多
gcc 4.4.6