php – SplObjectStorage是否会在对象仍然附着时破坏内存泄漏引用?

发布时间:2022-04-30 发布网站:脚本宝典
脚本宝典收集整理的这篇文章主要介绍了php – SplObjectStorage是否会在对象仍然附着时破坏内存泄漏引用?脚本宝典觉得挺不错的,现在分享给大家,也给大家做个参考。
如果SplObjectStorage实例在仍然附加某些对象的情况下析构,它是否先隐式分离对象,还是由SplObjectStorage对这些悬空对象的引用导致内存泄漏?我正在尝试确定用户代码是否“分离在破坏之前留下的任何东西”是必要的,以止这样的内存泄漏.

@H_406_7@$storage = new SplObjectStorage(); $x = new stdClass(); $y = new stdClass(); $storage->attach($x); $storage->attach($y); $storage = null; // did not explicITly detach $x and $y... does $storage's destruction do it? // or do the zval counts on $x and $y Now off by one? $x = null; $y = null; // at this point,are there two dangling references to $x and $y,// simply because $storage did not dereference From them before destroying itself?

解决方法

简单的答案是:它应该释放这两个对象.

如果不是这种情况,则应将其视为错误.

测试:使用析构函数创建一个类,并确保调用它.

脚本宝典总结

以上是脚本宝典为你收集整理的php – SplObjectStorage是否会在对象仍然附着时破坏内存泄漏引用?全部内容,希望文章能够帮你解决php – SplObjectStorage是否会在对象仍然附着时破坏内存泄漏引用?所遇到的问题。

如果觉得脚本宝典网站内容还不错,欢迎将脚本宝典推荐好友。

本图文内容来源于网友网络收集整理提供,作为学习参考使用,版权属于原作者。
如您有任何意见或建议可联系处理。小编QQ:384754419,请注明来意。