getenv
来自cppreference.com
该页由英文版wiki使用Google Translate机器翻译而来。
该翻译可能存在错误或用词不当。鼠标停留在文本上可以看到原版本。你可以帮助我们修正错误或改进翻译。参见说明请点击这里. |
在头文件 <stdlib.h> 中定义
|
||
const char *getenv( const char *env_var ); |
||
搜索一个环境变量的名称在指定的主机环境列表和返回的信息与
env_var
。改变它的环境变量和方法的集合是实现定义的. 原文:
Searches for an environmental variable with name
env_var
in the host-specified environment list and returns information associated with it. The set of environmental variables and methods of altering it are implementation-defined. 目录 |
[编辑] 参数
env_var | - | null结尾的字符串,确定名字的环境变量中寻找
原文: null-terminated character string identifying the name of the environmental variable to look for |
[编辑] 返回值
如果没有找到这样的变量字符串识别的环境变量的值,或NULL.
原文:
character string identifying the value of the environmental variable or NULL if such variable is not found.
[编辑] 示例
本章尚未完成 原因:暂无示例 |
[编辑] 另请参阅
C++ documentation for getenv
|