main函数形参argc和argv解析
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了main函数形参argc和argv解析相关的知识,希望对你有一定的参考价值。
测试环境:ubuntu 16.0
编译器: g++ (Ubuntu 5.4.0-6ubuntu1~16.04.4) 5.4.0 20160609 (查看版本指令:g++ --version)
以下为测试代码:
1 #include <stdio.h> 2 #include <stdlib.h> 3 4 int main(int argc, char* argv[]) 5 { 6 int count = 0; 7 8 //获取终端输入指令 9 for( ; count < argc; ++ count) 10 { 11 printf("%s\n", argc[count]); 12 } 13 printf("has %d orders\n", count); 14 15 return 0; 16 }
执行结果:
[email protected]:~/projects/proj$ ./server hello reacher
./server
hello
reacher
has 3 orders
得出结论:
argc 存储着统计终端输入指令总数
argv 存储输入的指令
以上是关于main函数形参argc和argv解析的主要内容,如果未能解决你的问题,请参考以下文章
int main(int argc,char* argv[])详解