PHP design Pattern-prototype mode

Source: Internet
Author: User

<?php/**** prototype design pattern: * * Abstract prototype mode: Declares a clone of its own interface ***   Specific prototype mode: Implement a clone of your own operation * * Advantages: Can be   at run time, and increase the deletion of a **           You can change the value and object  , to change the new object **           use the class to dynamically configure the application **           Support Cancel Operation **          Support for modifying log operations ****/interface protype{public function copy ();} class operation implements protype{private  $obj;p ublic function __construct ($ Name) {$this->obj =  $name;} Public function getname () {return  $this->obj;} Public function setname ($name) {$this->obj =  $name;} Public function copy () {return clone  $this;}} Class client{public static function main () {$newson  = new operation (' nnnn '); Var_dump ($newson->copy ());}} Client::main (); 


This article is from the "Wang Nimei Adult Road" blog, so be sure to keep this source http://8335914.blog.51cto.com/8325914/1614041

PHP design Pattern-prototype mode

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.