gpt4 book ai didi

c - 在 C 中使用 getopt 作为命令行参数

转载 作者:太空宇宙 更新时间:2023-11-04 06:25:07 28 4
gpt4 key购买 nike

我正在尝试接受命令行参数。如果我想有多个可选的命令行参数,我该怎么做呢?例如,您可以通过以下方式运行该程序:(a 是每个实例都需要的,但 -b -c -d 可以选择性地以任何顺序给出)

./myprogram -a
./myprogram -a -c -d
./myprogram -a -d -b

我知道 getopt() 的第三个参数是选项。我可以将这些选项设置为“abc”,但我设置开关盒的方式会导致循环在每个选项处中断。

最佳答案

getopt() 而言,顺序无关紧要。重要的是你对 getopt() 的第三个参数(即:它的格式字符串)是正确的:

以下格式字符串都是等价的:

"c:ba"
"c:ab"
"ac:b"
"abc:"

在您的特定情况下,格式字符串只需要类似于 "abcd",并且正确填充 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 *cvalue = NULL;
int index;
int c;

opterr = 0;

while ((c = getopt (argc, argv, "abc:")) != -1)
{
switch (c)
{
case 'a':
aflag = 1;
break;
case 'b':
bflag = 1;
break;
case 'c':
cvalue = optarg;
break;
case '?':
if (optopt == 'c')
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 ();
}
}

printf ("aflag = %d, bflag = %d, cvalue = %s\n",
aflag, bflag, cvalue);

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

¹ Example taken from the GNU manual

关于c - 在 C 中使用 getopt 作为命令行参数,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/28129098/

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