C语言命令行参数获取的函数getopt()

getopt()函数:用于分析命令行参数。


表头文件
#include<unistd.h>

定义函数
int getopt(int argc, char * const argv[ ], const char * optstring);

参数argc和argv分别代表参数个数和内容,跟main()函数的命令行参数是一样的。

参数 optstring为选项字符串, 告知 getopt()可以处理哪个选项以及哪个选项需要参数。
optstring中的指定的内容的意义(例如getopt(argc, argv, "ab:c:de::");)
1.)单个字符,表示选项(如下例中的abcde各为一个选项)。
2.)单个字符后接一个冒号:表示该选项后必须跟一个参数,参数紧跟在选项后或者以空格隔开。该参数的指针赋给optarg(如下例中的b:c:)。
3.)单个字符后跟两个冒号::,表示该选项后可以跟一个参数,也可以不跟。如果跟一个参数,参数必须紧跟在选项后不能以空格隔开。该参数的指针赋给optarg。(如上例中的e::,如果没有跟参数,则optarg = NULL)
4.)如果在处理期间遇到了不符合optstring指定的其他选项,getopt()将显示一个错误消息,并将全域变量optopt设为“?”字符,如果不希望getopt()打印出错信息,则只要将全域变量opterr设为0即可。

extern char *optarg;
extern int optind, opterr, optopt;
getopt() 所设置的全局变量包括:
    optarg——指向当前选项参数(如果有)的指针
    optind——再次调用 getopt() 时的下一个 argv 指针的索引。
    optopt——最后一个未知选项。
 

#include <stdio.h>
#include<unistd.h>
int main(int argc, char *argv[]){
   int ch;
  opterr = 0;
  while((ch = getopt(argc,argv,"a:bcde"))!= -1){
      switch(ch){
          case 'a':
                printf("option a:’%s’\n",optarg); 
                break;
          case 'b': 
                printf("option b :b\n"); 
                break;
          default: 
                printf("other option :%c\n",ch);
      }
      printf("optopt +%c\n",optopt);
  }
  return 0;
}

执行 $./getopt –b
option b:b
optopt +
执行 $./getopt –c
other option:c
optopt +
执行 $./getopt –a
other option :?
optopt +
执行 $./getopt –a12345
option a:’12345’
optopt +

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

auspark

你的鼓励将是我创作的最大动力

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

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

余额充值