php __clone实现

<?php

class Account {

    public $balance;

    public function __construct($balance) {
        $this->balance = $balance;
    }

}

class Person {

    private $id;
    private $name;
    private $age;
    public $account;

    public function __construct($name, $age, Account $account) {
        $this->name = $name;
        $this->age = $age;
        $this->account = $account;
    }

    public function setId($id) {
        $this->id = $id;
    }

    public function __clone() {    //复制方法,可在里面定义再clone是进行的操作
        $this->id = 0;
        $this->account = clone $this->account;    //不加这一句,account在clone是会只被复制引用,其中一个account的balance被修改另一个也同样会被修改
    }

}

$person = new Person("peter", 15, new Account(1000));

$person->setId(1);
$person2 = clone $person;

$person2->account->balance = 250;

echo '<pre>';
var_dump($person, $person2);
?>

 

结果
object
(Person)#1 (4) { ["id":"Person":private]=> int(1) ["name":"Person":private]=> string(5) "peter" ["age":"Person":private]=> int(15) ["account"]=> object(Account)#2 (1) { ["balance"]=> int(1000) } } object(Person)#3 (4) { ["id":"Person":private]=> int(0) ["name":"Person":private]=> string(5) "peter" ["age":"Person":private]=> int(15) ["account"]=> object(Account)#4 (1) { ["balance"]=> int(250) } }

 

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值