PHP design mode--strategy mode

Source: Internet
Author: User
Tags cmath

<?PHP/** * Policy mode * Policy mode helps build an object that does not have to contain logic itself, but is able to take advantage of algorithms in other objects as needed * The best practice when you can create an object-based, self-contained algorithm of interchangeable objects is to use the policy mode*/Interfacemath{functionCalc$op 1,$op 2);}classAddImplementsmath{ Public functionCalc$op 1,$op 2) {        return $op 1+$op 2; }}classSubImplementsmath{ Public functionCalc$op 1,$op 2) {        return $op 1-$op 2; }}//Policy Classesclasscmath{protected $_calc=NULL;  Public function__construct ($type) {        $this->_calc =New $type; }     Public functionCalc$op 1,$op 2) {        return $this->_calc->calc ($op 1,$op 2); }}//Use$type= ' Add ';$calc=NewCmath ($type);$result=$calc->calc (1, 100);Echo' 1 + 100 = '.$result.‘ <br> ';//Use$type= ' Sub ';$calc=NewCmath ($type);$result=$calc->calc (1, 100);Echo' 1-100 = '.$result;

PHP design mode--strategy 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.