php-在对象中存储循环依赖关系是否是错误的做法,或者可能会遭受性能问题?
作者:互联网
使用周期性参考是不好的做法还是会对性能产生重大影响?例如,将对象A添加为对象B的属性,然后将对象B添加为对象A的属性?
一个例子:
<?php
class Object_A {
public function __construct() {
$this->b = new Object_B( $this );
}
public function get_b() {
return $this->b;
}
}
class Object_B {
public function __construct( Object_A $a ) {
$this->a = $a;
}
}
This answer seems to be similar,但适用于C#.
解决方法:
有关循环引用的更一般性讨论,请参见程序员stackexchange网站上的What’s wrong with circular references?.但请记住,该问题明确指出
I am not asking about homogenous circular references, like those in a doubly-linked list or pointer-to-parent.
从5.3版开始,PHP实现了一个完全能够收集周期的垃圾收集器.
性能注意事项在手册的Garbage Collection – Performance Considerations下进行了讨论.
标签:cyclic-reference,php 来源: https://codeday.me/bug/20191119/2039165.html