删除 getenv() 返回的 char 数组

发布于 2024-09-14 00:43:57 字数 302 浏览 7 评论 0原文

我是否应该释放为 char 数组分配的内存(由 char * getenv( char * ) 函数返回的指针)?哪种方式 - C free() 还是 C+ delete []?如果没有——为什么?

我的意思是:

char * ptr = getenv( "LS_COLORS" );
cout << ptr << endl;
delete [] ptr; //Is this or free() call needed?

谢谢。

Should I free the memory allocated for the char array, pointer to which is returned by the char * getenv( char * ) function? And which way - C free() or C+ delete []? If no - why?

I mean:

char * ptr = getenv( "LS_COLORS" );
cout << ptr << endl;
delete [] ptr; //Is this or free() call needed?

Thank you.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

情泪▽动烟 2024-09-21 00:43:57

原始数据存储在environ变量中(它是一个char*数组,包含所有环境变量及其值),getenv()只搜索相应的变量name 并从 environ 变量返回其值的位置,因此您不必释放它,否则可能会发生未定义的行为。

The original data is stored in the environ variable (which is an array of char* and contains all environment variables with their values), getenv() only search for the corresponding variable name and returns the position of its value from the environ variable, so you don't have to free it, otherwise undefined behavior may be occurred.

骷髅 2024-09-21 00:43:57

Getenv 返回指向您的进程环境的指针。它不需要被释放,而且最好不要释放。 (删除和释放可能足够聪明,什么都不做,但破坏你的环境并不是一个好主意。)

Getenv returns a pointer to your processes environment. It does not need to be deallocated, and it is probably a good idea not to. (delete and free are probably smart enough to do nothing, but corrupting your environment is not a good idea.)

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文