一、函数简介
getopt函数用来分析命令行参数,参数argc和argv分别代表参数个数和内容,跟main()函数的命令行参数是一样的。参数 optstring为选项字符串, 告知 getopt()可以处理哪个选项以及哪个选项需要参数,如果选项字符串里的字母后接着冒号“:”,则表示还有相关的参数,全域变量optarg 即会指向此额外参数。如果在处理期间遇到了不符合optstring指定的其他选项getopt()将显示一个错误消息,并将全域变量optarg设为“?”字符,如果不希望getopt()打印出错信息,则只要将全域变量opterr设为0即可。
二、函数说明
1.头文件: #include<unistd.h>
2.函数原型:int getopt(int argc,char * const argv[ ],const char * optstring);
3.参数说明:
1)argc是一个整型,表示统计的参数个数,默认值是1,执行文件名就是一个参数
2)argv是指向字符串的指针数组,argv[0]默认存放执行文件名
3)optstring:单个字符,表示选项;单个字符后接一个冒号,表示该选项后必须跟一个参数,参数紧跟在选项后或者以空格隔开,该参数的指针赋给optarg;单个符号后跟两个冒号,表示该选项后可以跟一个参数,也可以不跟,如果跟一个参数,参数必须紧跟在选项后不能以空格隔开,该参数的指针赋给optarg
4.全局变量:
1)optarg:指向当前选项参数的指针
2)optind:再次调用getopt()时的下一个argv指针的索引
3)optopt:最后一个未知选项
三、示例
示例1.
#include <stdio.h> #include <unistd.h> int main(int argc, char** argv) { printf("argc:%d, argv:%s\n",argc,argv[0]); return 0; }
<span style="font-size:18px;"> #include <stdio.h> #include <unistd.h> 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("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); } }</span>