gpt4 book ai didi

c - zend_string_release 和 zend_string_free 有什么区别?

转载 作者:太空狗 更新时间:2023-10-29 16:01:29 26 4
gpt4 key购买 nike

我看到了 source ,但仍然无法完全自信地解释差异:

static zend_always_inline void zend_string_free(zend_string *s)
{
if (!IS_INTERNED(s)) {
ZEND_ASSERT(GC_REFCOUNT(s) <= 1);
pefree(s, GC_FLAGS(s) & IS_STR_PERSISTENT);
}
}

static zend_always_inline void zend_string_release(zend_string *s)
{
if (!IS_INTERNED(s)) {
if (--GC_REFCOUNT(s) == 0) {
pefree(s, GC_FLAGS(s) & IS_STR_PERSISTENT);
}
}
}

编辑:

最好有一个实际的例子,其中 zend_string_freezend_string_release 更合适,反之亦然。

最佳答案

zend_string 是引用计数的。这意味着多个地方可以简单地通过增加其引用计数来使用相同的 zend_string。这是使用 zend_string_copyzend_string_addref 完成的。

zend_string_release 函数是您在绝大多数情况下想要使用的函数,它将减少引用计数。如果碰巧您是该字符串的最后一个用户(即引用计数现在为零),该字符串将被释放。

zend_string_free 函数是针对您已经知道您是唯一使用字符串的情况的优化。它将直接释放字符串,而不首先检查引用计数(断言仅用于调试,它不存在于发布版本中)。

如有疑问,请使用 zend_string_release

关于c - zend_string_release 和 zend_string_free 有什么区别?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/28035694/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com