C程序中main参数argv和argc && getopt和getopt_long函数

      命令行界面的程序,通常都需要输入命令行参数帮助程序执行。main是最典型的此类应用。

#include <stdio.h>
#include <stdlib.h>
int main(int argc, char *argv[])
{
	int count;
	printf("The command line has %d arguments: \r\n", argc - 1);  
	for(count = 1; count < argc; count++)
	{
		printf("%d: %s \r\n", count, argv[count]);
	}
	printf(" \r\n");
	return 0;
}


这里先解释一下main(int argc, char*argv[])这个函数中两个参数的意义,argc记录的是命令行中整个main参数的个数,argv是一个拥有argc个元素的字符串数组,每个元素保存一个命令行中输入的参数。

      编译这个文件为可执行文件repeat:gcc repeat.c -o repeat,按下列方式执行 repeat 程序:./repeat I "love" 3,输出如下:


经过验证,相当于argc = 4; argv[1] = "i",argv[2] = "love",argv[3] = "3",细看会发现它是从第一个数组元素开始输出的,那么argv[0]是什么呢?实验结果是"./repeat"。

========================================================================================

        如果是针对main函数带复杂参数的,就要用到getopt和getopt_long函数了。比如当命令行参数个数较多时,如果按照顺序一个一个定义参数含义很容易造成混乱,而且如果程序只按顺序处理参数的话,一些“可选参数”的功能将很难实现。

#include <unistd.h>  
  
int getopt(int argc, char * const argv[],  const char *optstring);    
extern char *optarg;  
extern int optind, opterr, optopt;  
  
#include <getopt.h>    
int getopt_long(int argc, char * const argv[],  const char *optstring,  const struct option *longopts, int *longindex);  

(1)最简单的getopt讲起,getopt函数的前两个参数,就是main函数的argc和argv,这两者直接传入即可,要考虑的就只剩下第三个参数。optstring的格式举例说明比较方便,例如:char *optstring = "abcd:";上面这个optstring在传入之后,getopt函数将依次检查命令行是否指定了 -a, -b, -c及 -d(这需要多次调用getopt函数,直到其返回-1),当检查到上面某一个参数被指定时,函数会返回被指定的参数名称(即该字母),最后一个参数d后面带有冒号,: 表示参数d是可以指定值的,如 -d 100 或 -d user。optind表示的是下一个将被处理到的参数在argv中的下标值。

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

int main(int argc, char *argv[])
{
    int opt;
    char *optstring = "a:b:c:d";

    while ((opt = getopt(argc, argv, optstring)) != -1)
    {
        printf("opt = %c\n", opt);
        printf("optarg = %s\n", optarg);
        printf("optind = %d\n", optind);
        printf("argv[optind - 1] = %s\n\n",  argv[optind - 1]);
    }

    return 0;
}

用gcc编译成test_getopt ,执行./test_getopt -a 100 -b 200 -c admin -d,执行结果

opt = a
optarg = 100
optind = 3
argv[optind - 1] = 100

opt = b
optarg = 200
optind = 5
argv[optind - 1] = 200

opt = c
optarg = admin
optind = 7
argv[optind - 1] = admin

opt = d
optarg = (null)
optind = 8
argv[optind - 1] = -d
(2)下面来讲getopt_long函数,getopt_long函数包含了getopt函数的功能,并且还可以指定“长参数”(或者说长选项),与getopt函数对比,getopt_long比其多了两个参数:int getopt_long(int argc, char * const argv[],const char *optstring,const struct option *longopts, int *longindex);在这里,longopts指向的是一个由option结构体组成的数组,那个数组的每个元素,指明了一个“长参数”(即形如--name的参数)名称和性质:

           struct option {
               const char *name;
               int         has_arg;
               int        *flag;
               int         val;
           };
name  是参数的名称。
has_arg 指明是否带参数值,其数值可选:no_argument (即 0) 表明这个长参数不带参数(即不带数值,如:--name);required_argument (即 1) 表明这个长参数必须带参数(即必须带数值,如:--name Bob);optional_argument(即2)表明这个长参数后面带的参数是可选的,(即--name和--name Bob均可)。
flag   当这个指针为空的时候,函数直接将val的数值从getopt_long的返回值返回出去,当它非空时,val的值会被赋到flag指向的整型数中,而函数返回值为0
val    用于指定函数找到该选项时的返回值,或者当flag非空时指定flag指向的数据的值。

       getopt_long的典型应用,参见bootable\recovery\recovery.cpp的main函数中的调用。


参考原文:http://blog.csdn.net/cashey1991/article/details/7942809

  • 1
    点赞
  • 5
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值