美文网首页
C语言 main()函数

C语言 main()函数

作者: 崩芭大酱 | 来源:发表于2018-05-10 16:51 被阅读11次

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]来判断是否打印完毕

  1. 许多unix操作系统普遍扩展了对envp的支持

  2. 保存了一个用户环境变量的字符串,以NULL结束

  3. envp可是是char[]类型 也可以使char*类型,

  4. envp一旦传入,它就是单纯的字符串,不会随着程序动态设置发生变化,可以使用putenv函数修改变量,也可是用getenv函数查看变量,但是envp本身不会发生变化

  5. 对ANSI版本兼容,对C++不兼容

    可能的应用场景

    1. 为程序提供参考,可以方便的传入当前系统运行的环境变量
    2. 如果程序在运行过程中修改了环境变量, 可以使用此参数进行环境变量的恢复。

补充

通过进一步的查询

main函数的envp参数不是在POSIX中规定的,而是作为一个扩展来指定的

envp参数提供了一个与envrion相同的功能,尽管此功能在UNIX系统上得到广泛实施,但应避免使用此功能,因为除了范围限制外,SUSv3中未详细说明。

相关文章

  • VC 在调用main函数之前的操作

    在C/C++语言中规定,程序是从main函数开始,也就是C/C++语言中以main函数作为程序的入口,但是操作系统...

  • C语言 main()函数

    C语言 main()函数 C语言main函数的完全格式是 argc: 是执行程序时命令行参数个数,需要注意,程序本...

  • python、main函数和argv参数

    笔者学习和使用过的语言中:C语言,C++语言,C#语言,Java语言都时有main函数在的,main是程序执行的起...

  • C语言程序可以没有main函数

    学习C语言的同学都知道,每个C程序要有一个main函数,程序从main函数开始执行,在main函数中结束。但事实上...

  • 2018-08-29日常C笔记

    C语言初学笔记 C语言程序是由函数组成的C语言程序启动时,系统就会自动调用名字叫main的函数C语言规定了函数定义...

  • Go语言 - Hello world

    与C语言类似,Go程序也是从main函数开始运行,但是这个main函数必须定义在main package中。(Go...

  • C语言基础

    c语言是由函数组成的 先要执行main函数固定格式 : int main(){ return 0 ; } ()是函...

  • APP 启动过程

    点击 icon 后会运行c语言 main 函数 ,在mian中有函数UIApplicationMain,UIApp...

  • 命令行参数

    C语言中的命令行参数在C语言中main函数可以接收两个参数int main(int argc, const cha...

  • c语言初识

    c语言主要说的是main函数,而且里面只能有唯一一个main函数。 这是函数基本框架: 1⃣️这是函数基本框架: ...

网友评论

      本文标题:C语言 main()函数

      本文链接:https://www.haomeiwen.com/subject/vnctdftx.html