当前位置:   article > 正文

getopt()函数(分析命令行参数)_getopt返回值

getopt返回值

头文件:

#include <unistd.h>

函数形式:

int getopt(int argc, char* argv【】, const char* optstring);

功能:

getopt直接分析命令行参数,找到选项和选项参数以及操作数的准确位置。

参数:

optstring:

optstring里存放需要识别的选项字符(如果该选项有参数,则后面加冒号)。

argc:

命令行字符串个数。

argv:

命令行里的所有字符串将会以指针数组的形式存入argv【】里。

返回值(optopt):

getopt函数每次返回一个选项字符,当没有选项时返回-1。

当解析到一个不在optstring里面的参数,或者一个必选值参数不带值时,返回“?”

当optstring是以':'开头时,缺值参数的情况下会返回,而不是

全局变量:

char* optarg:

如果找到一个有参数的选项,则全局变量optarg将指向这个选项参数的首地址。

int optind:

argv的当前索引值(下标)。当getopt()在while循环中使用时,循环结束后,剩下的字符串视为操作数,在argv【optind】或argv【argc-1】中可以找到。

int optopt:

当发现无效字符时,函数返回“?”或“:”,并且optopt包含了发现的无效选项字符。

int opterr:

这个变量非零时,函数为“无效选项”和“缺少参数选项”,并输出其错误信息。

代码示范:

  1. #include <stdio.h>
  2. #include <unistd.h>
  3. int main(int argc,char** argv){
  4. int c;
  5. while((c = getopt(argc,argv,"ab:"))!=-1){
  6. switch(c){
  7. case 'a':
  8. printf("option a\n");
  9. break;
  10. case 'b':
  11. printf("option b %s\n",optarg);
  12. break;
  13. default:
  14. perror("getopt error");
  15. return 1;
  16. }
  17. }
  18. if(optind != argc -1){
  19. printf("usage:%s getoption [-a] [-b <optarg>] <argument>\n",argv[0]);
  20. return 1;
  21. }
  22. printf("argument:%s\n",argv[optind]);
  23. }

结果:



声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/酷酷是懒虫/article/detail/811957
推荐阅读
相关标签
  

闽ICP备14008679号