OptionArg的目的是什么。
请提供相关文件。
下面的代码表示什么:
const OptionEntry[] options = {
{"wide", 'w', 0, OptionArg.NONE, ref wide, N_("Enable wide mode"), null },
{"device", 'd', 0, OptionArg.FILENAME, ref device, N_("Device to use as a camera"), N_("DEVICE")},
{"version", 'v', 0, OptionArg.NONE, ref version, N_("Output version information and exit"), null },
{null}
};
当做,
伊希特
最佳答案
选项可能是this。。。
您可能有一个可以从命令行启动的程序,并且您有几个可以给定的选项和参数。
可能是-h或--help为您提供帮助信息,而-C 2或--context=2为您提供响应中的两行上下文,而-hl=“red”或--highlight=“red”为您提供红色突出显示。对于其中的每一个,您必须在代码中执行以下操作:(1)定义短标志(2)长标志和(3)要执行的操作。所以这是一系列的选项,动作和类型或者其他什么。
关于linux - OptionArg的目的,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/4858963/