刚开始还不知道main函数带个参数有什么用,后来发现很多可执行文件都是main函数带参的,那些带有选项的命令行命令就是这样的程序。比如ping -h,-h就是个参数。
下面是我刚刚得到的对main函数带参数的理解:
main函数带的参数是有规定的,必须是两个参数,第一个是字符串个数(包括可执行文件名也算一个字符串),第二个是指向数组的指针。
执行的时候格式:可执行文件名 字符串1 字符串2 字符串3 ...
注意,执行的时候不能输入第一个参数(字符串个数),这个参数是系统根据你后面输入的字符串个数自动计算出来的,值是你输入的字符串个数再加1,因为可执行文件名也算一个字符串,另外,字符串数组中的第0个元素也是这个可执行文件名。
下面是一个例子:
编译完成之后在命令提示行下面运行生成的可执行文件,后面输入参数即可。
/***********************************************
main函数带参数的测试程序
mubo 2009-1-10
***********************************************/
#include "stdio.h"
void info()
{
printf("Information:\n");
printf(" main function with parameter test\n");
printf(" version: 1.0\n");
printf(" auther: mubo\n");
printf(" date: 2009-1-10\n");
}
void help()
{
printf("Options:\n");
printf(" -h : help infomation\n");
printf(" -i : the information of this programme\n");
printf(" -a : say Hello to you\n");
}
int main(int argc, char *argv[])
{
if (argc>2)
printf("Too many parameter!\n");
else if(argc<2)
{
printf("please give an option\n");
help();
}
else
{
if( (*argv[1] != '-') && (*argv[1] != '/') )
{
printf("error parameter!\n");
help();
}
else
{
switch(*(argv[1]+1))
{
case 'h':
help();
break;
case 'i':
info();
break;
case 'a':
printf("a - Hello!\n");
break;
default :
printf("Bad option");
help();
break;
}
}
}
return;
}
文章评论(0条评论)
登录后参与讨论