main函数传参

Posted lanlancky

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了main函数传参相关的知识,希望对你有一定的参考价值。

在有些C语言程序中,我们会看到main函数有如下的写法:

int main(int argc, char* argv[]);

或者是这样的:

int main(int argc, char** argv);

给main传参通过argc和argv这两个参数来实现。执行程序时,可以从命令行传值给 C 程序。这些值被称为命令行参数,它们对程序很重要,特别是当您想从外部控制程序,而不是在代码内对这些值进行硬编码时,就显得尤为重要了。

命令行参数是使用 main() 函数参数来处理的,其中,argc 是指传入参数的个数,argv[ ] 是一个字符指针数组,指向传递给程序的每个参数。

下面是一个通过指定命令行参数实现简单计算器的程序

#include <string.h>
#include <stdio.h>
#include <stdlib.h> int Add(int, int); int Sub(int, int); int Mul(int, int); int Div(int, int); int main(int argc, char* argv[]) if(argc != 4) printf("Parameters should be 4.\\n"); return -1; int param1 = atoi(argv[1]); int param3 = atoi(argv[3]); if(!strcmp(argv[2], "+")) printf("%s %s %s = %d\\n", argv[1], argv[2], argv[3], Add(param1, param3)); else if(!strcmp(argv[2], "-")) printf("%s %s %s = %d\\n", argv[1], argv[2], argv[3], Sub(param1, param3)); else if(!strcmp(argv[2], "x")) printf("%s %s %s = %d\\n", argv[1], argv[2], argv[3], Mul(param1, param3)); else if(!strcmp(argv[2], "/")) printf("%s %s %s = %d\\n", argv[1], argv[2], argv[3], Div(param1, param3)); else printf("Parameters fault.");
     return -1; return 0; int Add(int a, int b) return a + b; int Sub(int a, int b) return a - b; int Mul(int a, int b) return a * b; int Div(int a, int b) return a / b;

其中C 库函数 int atoi(const char *str) 把参数 str 所指向的字符串转换为一个整数(类型为 int 型)。由于命令行参数都是字符指针类型,想要对参数进行数学运算,必须把字符串转成int类型。

编译执行如下:

gcc .\\calculator.c -o calculator.exe
.\\calculator.exe 4*2
4*2=8
.\\calculator.exe 4+2
4+2=6
.\\calculator.exe 4/2
4/2=2
.\\calculator.exe 4-2
4-2=2

 可以看到,通过给定不同的命令行参数,在同一个程序中可以实现不同的功能。

一.main()函数参数
通常我们在写主函数时都是void main()或int main() ..return 0;,但ANSI-C(美国国家标准协会,C的第一个标准ANSI发布)在C89/C99中main()函数主要形式为:
(1).int main(void)
(2).int main(int argc,char *argv[]) = int main(int argc,char **argv).
其参数argc和argv用于运行时,把命令行参数传入主程序.其中ARG是指arguments,即参数.具体含义如下:
(参照Arguments to main和C++ Primer7.2.6节)
(1).int argc:英文名为arguments count(参数计数)
count of cmd line args,运行程序传送给main函数的命令行参数总个数,包括可执行程序名,其中当argc=1时表示只有一个程序名称,此时存储在argv[0]中.
(2).char **argv:英文名为arguments value/vector(参数值)
pointer to table of cmd line args,字符串数组,用来存放指向字符串参数的指针数组,每个元素指向一个参数,空格分隔参数,其长度为argc.数组下标从0开始,argv[argc]=NULL.
argv[0] 指向程序运行时的全路径名
argv[1] 指向程序在DOS命令中执行程序名后的第一个字符串
argv[2] 指向执行程序名后的第二个字符串
argv[argc] 为NULL.

二.源代码中的argc与argv
由于C程序必须有main()函数为入口,而且它不能被其他函数调用(可以调用自身),因此不能再程序内部取得实际值.那么在何处把实参赋值给main函数的形参呢?这就需要调用"运行"或"DOS提示符",在调用可执行程序exe时,编译器会帮助我们将输入参数的信息放入main函数的参数列表中传参.
1.计算命令行参数个数程序如下:

<strong>//C 输出参数个数
#include <stdio.h>
#include <stdlib.h>
int main(int argc,char *argv[])

printf("参数个数=%d\\n",argc);
system("PAUSE");
return 0;


//C++ 输出参数个数
#include <iostream>
using namespace std;
int main(int argc,char *argv[])

cout<<"参数个数="<<argc<<endl;
system("PAUSE");
return 0;
</strong>

调用"运行"(快捷键Ctrl+R)或"cmd"输入"G:\\test.exe"会输出"参数个数=1",此时存储的就是执行程序名.输入"G:\\test.exe 2 hello good"输出"参数个数=4":

2.查看argv[]二维数组存储具体字符串的代码如下:

<strong>//C 查看argv存储参数值及对应序号
#include <stdio.h>
#include <stdlib.h>
int main(int argc,char *argv[])

int i;
printf("参数个数=%d\\n",argc);
for(i=0; i<argc; i++)

printf("参数序号=%d ",i);
printf("参数值=%s\\n",argv[i]);

system("PAUSE");
return 0;


//C++ 查看argv存储参数值及对应序号
#include <iostream>
using namespace std;
int main(int argc,char *argv[])

cout<<"参数个数="<<argc<<endl;
for(int i=0; i<argc; i++)

cout<<"参数序号="<<i<<" ";
cout<<"参数值="<<argv[i]<<endl;  

system("PAUSE");
return 0;
</strong>

"运行"中输入"G:\\test.exe 2 hello good",输出如下

参数个数=4

参数序号=0,参数值=\\G:\\test.exe

参数序号=1,参数值=2

参数序号=2,参数值=hello

参数序号=3,参数值= good

请按任意键继续


其中argv[0]指向字符串可执行程序的名称G盘下的test.exe,通常会位于"项目名称\\Debut\\xxx.exe"中.后面argv[1..3]单元依次指向程序调用时的参数.

 

以上是关于main函数传参的主要内容,如果未能解决你的问题,请参考以下文章

shell程序传参和main函数传参的区别

Main函数传参

解决 main(int argc, char** argv)这种情况下通过命令行传参,改为main函数里面给定参数。

用main函数传参做简单的计算器的代码

C++中int &m 传参问题?

Java命令行传参