C标准库 – std :: setenv vs setenv

前端之家收集整理的这篇文章主要介绍了C标准库 – std :: setenv vs setenv前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我有一个简单的调用std :: setenv,它工作在我的 Linux发行版gcc下找到.但是,在Mac OS X上使用clang时,我会收到以下错误.
error: no member named 'setenv' in namespace 'std'; did you mean simply 'setenv'?
std::setenv(name.c_str(),value.c_str(),true);

我相信我已经读过某个地方,setenv是C11中命名空间std的一部分,但现在我不确定.

问题:应该使用setenv或std :: setenv,为什么会这样?

解决方法

我在 cppr上没有任何类似std :: setenv的任何东西,只有 std::getenv在其文档中引用了POSIX功能 setenv,这当然不在命名空间std中.

所以既然你没有调用C标准函数,那么普通的setenv应该是这样的,因为定义函数定义它的标准是什么.请注意,std :: setenv是允许的(但不是必需的)工作. (另见hvd’s comment.)

对于标准爱好者:setenv只提及

Calls to the function getenv shall not introduce a data race (17.6.5.9) provided that nothing modifies the
environment. [ Note: Calls to the POSIX functions setenv and putenv modify the environment. — end
note ]

来自N3797 18.10.5.它确实不是C标准函数,因此不一定在命名空间std中.

原文链接:https://www.f2er.com/c/114861.html

猜你在找的C&C++相关文章