PHP object-oriented clone _ PHP Tutorial

Source: Internet
Author: User
PHP object-oriented clone. One of the biggest disadvantages of PHP object-oriented cloning php4 object-oriented is to regard objects as another data type, which makes many common OOP methods unusable, such as design patterns. Clone of these o php object-oriented code

One of the biggest disadvantages of php4 object-oriented is to regard objects as another data type, which makes many common OOP methods unusable, such as design patterns. These OOP methods depend on passing objects as references to other classes, rather than passing objects as values. Fortunately, PHP solved this problem. All objects are considered as references by default. However, because all object pairs are regarded as references rather than values, it is more difficult to copy objects. If you try to copy an object, this will point to the address of the original object. To solve the replication problem, PHP provides a method to clone the display object.

Example:

IntroductionCloneKeyword: Clone object:

 name = $na;    }        function getName()    {    return $this->name;    }        function setNum($nu)    {    $this->num = $nu;    }    function getNum()    {    return $this->num;    }    }        $test = new TestClone();    $test->setName("tianxin");    $test->setNum(123456);    echo $test->getName();    echo $test->getNum()."";        $test2 = clone $test;    $test2->setName("liwei");    echo $test->getName();    echo $test->getNum()."";        echo $test2->getName();    echo $test2->getNum();    ?>
Running result:

tian123456tian123456xia123456

From the running results, we can see that if test2 does not modify the name. Although the objects test and test2 have different attributes, changing the attributes of the test2 object does not affect the attributes of the test object, therefore, it can be determined that the clone is to pass the value, rather than a simple reference.

PHP5 defines a special method named "_ clone ()", which is automatically called during object cloning and uses "_ clone () the method creates an object with the same attributes and methods as the original object. to change the content of the original object after cloning () override the original attributes and methods. the "_ clone ()" method can have no parameters. it automatically contains two pointers: $ this and $ that,$ This pointsDuplicateAnd $ that pointsOriginal;

 name = $na;    }        function getName()    {    return $this->name;    }        function setNum($nu)    {    $this->num = $nu;    }    function getNum()    {    return $this->num;    }        function __clone()    {    $this->name = "huang";    }    }        $test = new TestClone();    $test->setName("tian");    $test->setNum(123456);    echo $test->getName();    echo $test->getNum()."";        $test2 = clone $test;//     $test2->setName("xia");    echo $test->getName();    echo $test->getNum()."";        echo $test2->getName();    echo $test2->getNum();    ?>

Running result:

tian123456tian123456huang123456

 Name = $ name; $ this-> sex = $ sex; $ this-> age = $ age;} // The way this person can speak, say your own property function say () {echo "My name is :". $ this-> name. "Gender :". $ this-> sex. "My age is :". $ this-> age. "";} // method automatically called when the object is cloned. to change the content of the original object after cloning, you must rewrite the original attributes and methods in _ clone. Function _ clone () {// $ this refers to the copy p2, and $ that points to the original p1. in this way, the attributes of the copy are changed. $ This-> name = "I'm copying Michael Jacob $ that-> name"; // $ this-> age = 30 ;}} $ p1 = new Person ("zhang san", "male", 20); $ p2 = clone $ p1; $ p1-> say (); $ p2-> say ();?>

Result after running:

My name is: Zhang San Gender: Male my age is: 20 my name is: I'm copying Zhang San Gender: Male my age is: 20

One of the biggest disadvantages of php4 object-oriented is to regard objects as another data type, which makes many common OOP methods unusable, such as design patterns. These O...

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.