C语言中的optopt和getopt
Optopt and getopt in C
我正在尝试弄清楚 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
它什么都不做,当它应该说 "Option n requires an argument."
我该如何解决这个问题?
你的 optstring "hnc:"
说 n
是一个不需要参数的有效参数,而 l
根本没有指定所以 ?
情况将总是被打尝试使用
getopt (argc, argv, "hn:l:")
表示 n
和 l
都需要参数。
我正在尝试弄清楚 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
它什么都不做,当它应该说 "Option n requires an argument."
我该如何解决这个问题?
你的 optstring "hnc:"
说 n
是一个不需要参数的有效参数,而 l
根本没有指定所以 ?
情况将总是被打尝试使用
getopt (argc, argv, "hn:l:")
表示 n
和 l
都需要参数。