php – SplObjectStorage是否会在对象仍然附着时破坏内存泄漏引
发布时间:2020-12-13 16:20:14 所属栏目:PHP教程 来源:网络整理
导读:如果SplObjectStorage实例在仍然附加某些对象的情况下析构,它是否先隐式分离对象,还是由SplObjectStorage对这些悬空对象的引用导致内存泄漏?我正在尝试确定用户区代码是否“分离在破坏之前留下的任何东西”是必要的,以防止这样的内存泄漏. $storage = new S
如果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? 解决方法
简单的答案是:它应该释放这两个对象.
如果不是这种情况,则应将其视为错误. 测试:使用析构函数创建一个类,并确保调用它. (编辑:李大同) 【声明】本站内容均来自网络,其相关言论仅代表作者个人观点,不代表本站立场。若无意侵犯到您的权利,请及时与联系站长删除相关内容! |