- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在尝试学习使用 getopt_long
。从 wikipedia ,我看到了代码
#include <stdio.h> /* for printf */
#include <stdlib.h> /* for exit */
#include <getopt.h> /* for getopt_long; POSIX standard getopt is in unistd.h */
int main (int argc, char **argv) {
int c;
int digit_optind = 0;
int aopt = 0, bopt = 0;
char *copt = 0, *dopt = 0;
static struct option long_options[] = {
{"add", 1, 0, 0},
{"append", 0, 0, 0},
{"delete", 1, 0, 0},
{"verbose", 0, 0, 0},
{"create", 1, 0, 'c'},
{"file", 1, 0, 0},
{NULL, 0, NULL, 0}
};
int option_index = 0;
while ((c = getopt_long(argc, argv, "abc:d:012",
long_options, &option_index)) != -1) {
int this_option_optind = optind ? optind : 1;
switch (c) {
case 0:
printf ("option %s", long_options[option_index].name);
if (optarg)
printf (" with arg %s", optarg);
printf ("\n");
break;
case '0':
case '1':
case '2':
if (digit_optind != 0 && digit_optind != this_option_optind)
printf ("digits occur in two different argv-elements.\n");
digit_optind = this_option_optind;
printf ("option %c\n", c);
break;
case 'a':
printf ("option a\n");
aopt = 1;
break;
case 'b':
printf ("option b\n");
bopt = 1;
break;
case 'c':
printf ("option c with value '%s'\n", optarg);
copt = optarg;
break;
case 'd':
printf ("option d with value '%s'\n", optarg);
dopt = optarg;
break;
case '?':
break;
default:
printf ("?? getopt returned character code 0%o ??\n", c);
}
}
if (optind < argc) {
printf ("non-option ARGV-elements: ");
while (optind < argc)
printf ("%s ", argv[optind++]);
printf ("\n");
}
exit (0);
}
option long_options[]
对象。
long_options[]
的第一个“列”应该是用户在命令行中使用的长标志(
--
后面的任何内容)。
no_argument
、
required_arguemnt
或
optional_argument
,但我看到的是 0 和 1。
getopt
的限制吗?如果我弄错了,那么如何在
getopt_long
(
""abc:d:012""
) 的第三个参数中指示两个以上的字符来标识标志
option long_options[]
的最后一行是在
getopt
返回
-1
时使用的,因此只要它存在就无关紧要。
最佳答案
struct option
数组在 man getopt_long
[Note 1] 中精确定义,我摘录:
longopts
is a pointer to the first element of an array ofstruct option
declared in<getopt.h>
asstruct option {
const char *name;
int has_arg;
int *flag;
int val;
};The meanings of the different fields are:
name
is the name of the long option.
has_arg
is:no_argument
(or 0) if the option does not take an argument;required_argument
(or 1) if the option requires an argument; oroptional_argument
(or 2) if the option takes an optional argument.
flag
specifies how results are returned for a long option. If flag isNULL
, thengetopt_long()
returnsval
. (For example, the calling program may setval
to the equivalent short option character.) Otherwise,getopt_long()
returns 0, andflag
points to a variable which is set toval
if the option is found, but left unchanged if the option is not found.
val
is the value to return, or to load into the variable pointed to byflag
.The last element of the array has to be filled with zeros.
has_arg
) 使用符号常量,但联机帮助页允许您使用 0、1 或 2,大概是为了向后兼容。 (维基百科应该使用符号常量,恕我直言,但那是维基百科和它的编辑之间的。)
getopt_long
返回
int
,而不是
char
。如果
flag
(第三个)字段是
NULL
(或等效的 0),那么
val
(第四个)字段将被返回,它可以是任何适合
int
的字段。字符肯定适合
int
,因此您可以返回等效的短选项字符(如联机帮助页中所述),但您没有义务这样做。
getopt
也返回一个
int
,但由于它总是返回一个选项字符(或一个错误指示),有大量的
int
值永远不会返回。 [笔记2]
NULL
,则应指向
int
类型的变量,
getopt_long
将在其中存储
val
值。例如,这可以用于 bool 标志:
enum FROBNICATE { FROB_UNSET = -1, FROB_NO = 0, FROB_YES = 1 };
/* ... */
/* This is conceptually an enum, but `getopt_long` expects an int */
int frob_flag = FROB_UNSET;
struct option long_opts = {
/* ... */
{"frobnicate", no_argument, &frob_flag, FROB_YES},
{"unfrobnicated", no_argument, &frob_flag, FROB_NO},
/* ... */
{NULL, 0, NULL, 0}
};
/* Loop over arguments with getopt_long;
In the switch statement, you can ignore the returned value
0 because the action has been fully realized by setting the
value of a flag variable.
*/
if (frob_flag == FROB_UNSET)
frob_flag = get_default_frobnication();
NULL
)。这是必要的,以便
getopt_long
知道数组在哪里结束。
man getopt_long
即可查看 getopt_long
的文档。这应该适用于任何标准 C 库函数、任何 Gnu libc 函数,以及一般而言,您安装了 -doc
包的任何 C 库函数。 (强烈推荐。)总的来说,在查看维基百科之前,您应该先尝试联机帮助页,因为联机帮助页将是您系统上实际安装的库函数版本的文档。 关于c - 使用 `option long_options[]` 时了解 `getopt_long`,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/39966025/
我经常使用 var options = options || {} 作为默认为空对象的方式。它通常用于初始化选项对象,以防它未在函数调用的参数中传递。 问题是我在几个地方(博客文章、源代码)读到opt
我是Python中Rust的新手。这是我学习Rust的第四天。 在第一个问题Type casting for Option type之后,我有一个跟语法match和所有权概念有关的后续问题。 首先,我
我正在学习 Ray Wenderlich。我遇到了闭包语法错误。我想知道 Xcode 提示是什么意思? Xcode 报告如下: /Users/.../FlickrPhotosViewControlle
使用 Python 编写命令行界面 (CLI) 时 click library , 是否可以定义例如三个选项,其中仅当第一个(可选)未设置时才需要第二个和第三个选项? 我的用例是一个登录系统,它允许我
我有一个这样的 JPA 查询。 PersonRepository.java public Optional> findByStatus(int status); 人员服务.java System.ou
我遇到了很多地方,我有类似的东西 def f(s: String): Option[Long] = ... def g(l: Long): IO[Option[Wibble]] = ... val a
我有一个results: List[Future[Option[T]]]其中包含(并行)计算。 我想获得第一个非None尽快出结果,或者返回None如果所有计算都返回 None . 目前,我正在这样做
我正在尝试加载一个简单的 Listbox组件来自 @headlessui/react . 选择.tsx type Option = { id: number name: string
如何将Future[Option[Future[Option[X]]]]转换为Future[Option[X]]? 如果它是 TraversableOnce 而不是 Option 我会使用 Futur
Haskell、Rust 等语言提供了一个 Maybe 或 Option 类型。即使在 Java 中,也有一个 Optional 现在打字。 为简单起见,我将在剩下的问题中将此类型称为“选项类型”。
当我尝试在 SQL 中存储一个 XML 而不是一个空元素时,SQL 只是更改它并仅使用一个元素标签来存储它。例如,要存储的 XML 是: ROGER 然后Sql存起来就好了
使用这个非常好的命令行解析器 Argo(仅 header C++ 库)我遇到了一个小问题。请参阅:https://github.com/phforest/Argo Argo 返回:'Error: Un
我是来自 Java 背景的 Scala 新手,目前对考虑 Option[T] 的最佳实践感到困惑. 我觉得用 Option.map只是更实用和美观,但这不是说服其他人的好理由。有时, isEmpty
这个问题在这里已经有了答案: Chaining Optionals in Java 8 (9 个回答) Optional orElse Optional in Java (6 个回答) Functio
Optional::stream如果存在,则返回一个包含该值的 Stream,否则返回一个空流。所以对于 Stream> optionals , optionals.flatMap(Optional:
我使用箭头键作为输入,在 printf 菜单中上下移动 printf 箭头(“==>”)。 我正在使用一个函数来计算箭头应该在的位置,并使用 switch case 和 printf("\n==>")
这个问题在这里已经有了答案: What does the construct x = x || y mean? (12 个答案) 关闭 9 年前。 如我的问题标题所述,我最近偶然发现了这个变量声明:
这个问题在这里已经有了答案: BackboneJS: What is options || (options = {}); in Backbone source code (1 个回答) 关闭 8
我有这个简单的语法: word = Word(alphanums + '_') with_stmt = Suppress('with') + OneOrMore(Group(word('key') +
使用 Cucumber 和 SitePrism 编写测试,我在页面上有以下 HTML... Select a Status Active Product Inactive Prod
我是一名优秀的程序员,十分优秀!