Php design mode prototype mode, design mode prototype _ PHP Tutorial

Source: Internet
Author: User
Php design mode prototype and design mode prototype. The prototype of the php design mode is similar to that of the engineering mode. it is used to create objects. Different from the implementation of the engineering model, the prototype mode is to first create a php design mode prototype mode, the design mode prototype

Similar to the engineering mode, the prototype mode is used to create objects.

Unlike the implementation of the engineering mode, the prototype mode creates a prototype object first, and then clone the prototype object to create a new object. This removes the need for repeated primitive operations during class creation.

The prototype mode applies to the creation of large objects. Creating a large object requires a great deal of overhead. if a new object consumes a lot each time, the prototype only requires memory copy.

Index. php

$ Prototype = new Baobab \ Canvas (); $ prototype-> init (); $ canvas1 = clone $ prototype; $ canvas1-> rect (3,6, 4,12 ); $ canvas1-> draw (); $ canvas2 = clone $ prototype; $ canvas2-> rect (3,6, 4,12); $ canvas2-> draw ();

The design mode is similar to the engineering mode, and is used to create objects. Different from the implementation of the engineering model, the prototype is created first...

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.