微信公众号搜"智元新知"关注
微信扫一扫可直接关注哦!

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

如果SplObjectStorage实例在仍然附加某些对象的情况下析构,它是否先隐式分离对象,还是由SplObjectStorage对这些悬空对象的引用导致内存泄漏?我正在尝试确定用户代码是否“分离在破坏之前留下的任何东西”是必要的,以防止这样的内存泄漏.

$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?

解决方法:

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

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

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

版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 dio@foxmail.com 举报,一经查实,本站将立刻删除。

相关推荐