摘要: 浅拷贝:拷贝一个对象作为另外一个对象的副本,之拷贝属性和方法。如果属性是对象拷贝的是对象的引用。深度拷贝:拷贝一个对象作为另外对象的一个副本,包括该对象下的属性及方法,如果属性是对象也要拷贝而不是拷贝引用。深度拷贝<?phpclass Company { protected $name; protected $address; function __construct($name, $address){ $this->name = $name; $this->address = $address; } function getAddre... 阅读全文
posted @ 2012-11-22 00:31 phpzxh 阅读(295) 评论(0) 推荐(0) 编辑