gpt4 book ai didi

c - C语言中的optopt和getopt

转载 作者:行者123 更新时间:2023-12-02 01:22:09 24 4
gpt4 key购买 nike

我试图找出 getopt,但我总是在 switch 语句的末尾挂断电话。

#include <ctype.h>
#include <stdio.h>
#include <stdlib.h>
#include <unistd.h>

int
main (int argc, char **argv)
{
int aflag = 0;
int bflag = 0;
char *filename = NULL, *x = NULL;
int index;
int c;

opterr = 0;
while ((c = getopt (argc, argv, "hnc:")) != -1)
switch (c)
{
case 'h':
printf("You chose h");
break;
case 'n':
x = optarg;
break;
case 'l':
filename = optarg;
break;
case '?':
if (optopt == 'n' || optopt == 'l')
fprintf (stderr, "Option -%c requires an argument.\n", optopt);
else if (isprint (optopt))
fprintf (stderr, "Unknown option `-%c'.\n", optopt);
else
fprintf (stderr,
"Unknown option character `\\x%x'.\n",
optopt);
return 1;
default:
abort ();
}

for (index = optind; index < argc; index++)
printf ("Non-option argument %s\n", argv[index]);
return 0;
}

当我编译它并运行 a.out -l 时,它会按照它应该的方式运行,但是当我运行 a.out -n 时,它什么都不做,在它应该的时候说“选项 n 需要一个参数。”

我该如何解决这个问题?

最佳答案

您的 optstring "hnc:" 表示 n 是不需要参数的有效参数,而 l 未指定所以 ? 案例总是会被命中。尝试使用

getopt (argc, argv, "hn:l:")

表示 nl 都需要参数。

关于c - C语言中的optopt和getopt,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/39422703/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com