C语言 main()函数
C语言main函数的完全格式是
int main(int argc, char* argv[], char* envp[]){
}
int main(int argc, char **argv, char **envp){
}
argc: 是执行程序时命令行参数个数,需要注意,程序本身的名字也算是一个
argv[]: 是命令行中参数的具体参数值
envp[]: 是环境变量, 没有一个整数来为它技术,是通过最后一个envp[i]==NULL来表示结尾的。
argc和argv 都是比较熟的 不必赘述。
单独说一下 envp:
例子程序
#include <stdio.h>
int main(int argc, char **argv, char **envp) {
printf(" argc == %d\n", argc);
for(int i=0; i<argc; i++) {
printf(" %s\n", argv[i]);
}
for(int i=0; envp[i]!=NULL;i++) {
printf(" %s\n", envp[i]);
}
return 0;
}
查看 msdn的解释:
MSDN上的解释是这样的:
Microsoft Specific
wmain( int argc, wchar_t *argv[ ], wchar_t *envp[ ] )
envp:
The envp array, which is a common extension in many UNIX® systems【#1】, is used in Microsoft C++. It is an array of strings representing the variables set in the user's environment. This array is terminated by a NULL entry【#2】. It can be declared as an array of pointers to char (char *envp[ ]) or as a pointer to pointers to char (char **envp). If your program uses wmain instead of main, use thewchar_t data type instead ofchar【#3】. The environment block passed to main and wmain is a "frozen" copy of the current environment【#4】. If you subsequently change the environment via a call to putenv or _wputenv, the current environment (as returned by getenv/_wgetenv and the _environ/ _wenviron variable) will change, but the block pointed to by envp will not change. See Customizing Command Line Processing for information on suppressing environment processing. This argument is ANSI compatible in C, but not in C++【#5】.
envp保存了系统环境变量, 以NULL结束,所以可以使用 envp[i]来判断是否打印完毕
许多unix操作系统普遍扩展了对envp的支持
保存了一个用户环境变量的字符串,以NULL结束
envp可是是char[]类型 也可以使char*类型,
envp一旦传入,它就是单纯的字符串,不会随着程序动态设置发生变化,可以使用putenv函数修改变量,也可是用getenv函数查看变量,但是envp本身不会发生变化
-
对ANSI版本兼容,对C++不兼容
可能的应用场景
- 为程序提供参考,可以方便的传入当前系统运行的环境变量
- 如果程序在运行过程中修改了环境变量, 可以使用此参数进行环境变量的恢复。
补充
通过进一步的查询
main函数的envp参数不是在POSIX中规定的,而是作为一个扩展来指定的
envp参数提供了一个与envrion相同的功能,尽管此功能在UNIX系统上得到广泛实施,但应避免使用此功能,因为除了范围限制外,SUSv3中未详细说明。