您好我正在测试可以找到here的默认getopt()
程序。
当我运行此代码并输入例如myProgram -c -b. -c
时,它需要-b
作为参数。正如我在阅读getopt()
时所理解的那样,以-
开头的字符被视为特例。我可以获取getopt()
而不是将-b
作为参数-c
运行-c
而不使用arg,然后转而-b
吗?
while ((c = getopt(argc, argv, "abc:")) != -1)
{
char test = 111;
std::cout << test << std::endl;
switch (c) {
case 'a':
aflag = 1; break;
case 'b':
bflag = 1; break;
case 'c':
{
cvalue = optarg;
break;
}
case '?':
if (isprint(optopt))
{
fprintf(stderr, "Unknown option `-%c'.\n", optopt);
}
else
fprintf(stderr, "Unknown option character `\\x%x'.\n", optopt);
return 1;
default:
abort();
}