getopt()函数详解

46 篇文章 0 订阅
14 篇文章 0 订阅


getopt()函数是被用来解析命令行选项参数的。

#include <unistd.h>
      extern char *optarg;  //选项的参数指针
      extern int optind,   //下一次调用getopt的时,从optind存储的位置处重新开始检查选项。 
      extern int opterr,  //当opterr=0时,getopt不向stderr输出错误信息。
      extern int optopt;  //当命令行选项字符不包括在optstring中或者选项缺少必要的参数时,该选项存储在optopt 中,getopt返回'?’、
      int getopt(int argc, char * const argv[], const char *optstring);

调用一次,返回一个选项。在命令行选项参数再也检查不到optstring中包含的选项时,返回-1,同时optind储存第一个不包含选项的命令行参数。

选项与参数:

1.单个字符,表示选项。

2.单个字符后接一个冒号:表示该选项后必须跟一个参数。参数紧跟在选项后或者以空格隔开。该参数的指针赋给optarg。

3.单个字符后跟两个冒号,表示该选项后必须跟一个参数。参数必须紧跟在选项后不能以空格隔开。该参数的指针赋给optarg。(这个特性是GNU的扩张)。

例如gcc -g -o test test.c ,其中g和o表示选项,test为选项o的参数。


假设现在我们这样调用getopt(argc, argv, "ab:c:de::");

从上面我们可以知道,选项a,d没有参数,选项b,c有一个参数,选项e有有一个参数且必须紧跟在选项后不能以空格隔开。

getopt()首先扫描argv[1]到argv[argc-1],并将选项及参数依次放到argv数组的最左边,非选项参数依次放到argv的最后边。


现在看一个栗子:

int main(int argc,char *argv[])
{
        int ch;
        opterr=0;
        while((ch=getopt(argc,argv,"a:b::cde"))!=-1)
        {
                printf("optind:%d\\n",optind);
                printf("optarg:%s\\n",optarg);
                printf("optarg:%s\\n",argv[optind]);
                printf("ch:%c\\n",ch);
                switch(ch)
                {
                case 'a':
                        printf("option a:'%s'\\n",optarg);
                        break;
                case 'b':
                        printf("option b:'%s'\\n",optarg);
                        break;
                case 'c':
                        printf("option c\\n");
                        break;
                case 'd':
                        printf("option d\\n");
                        break;
                case 'e':
                        printf("option e\\n");
                        break;
                default:
                        printf("other option:%c\\n",ch);
        }
        printf("optopt+%c\\n",optopt);
        }
        return 0;
}


编译后,在终端行执行以上的命令:

    ./a.out -a1234 -b432 -c -d

    则会有如下的输出:

    optind:2

    optarg:1234

    ch:a

    option a:'1234'

    optopt+

    optind:3

    optarg:432

    ch:b

    option b:'432'

    optopt+

    optind:4

    optarg:(null)

    ch:c

    option c

    optopt+

    optind:5

    optarg:(null)

    ch:d

    option d

    optopt+



  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值