Home > php教程 > php手册 > body text

php设计模式 Template Method (模板方法模式)

WBOY
Release: 2016-05-22 17:20:22
Original
1388 people have browsed it

25种php设计模式,你全都知道吗?下面用代码介绍Template Method (模板方法模式)

<?php
/**
 * 模板模式
 *
 * 定义一个操作中的算法骨架,而将一些步骤延迟到子类中,使得子类可以不改变一个算法的结构可以定义该算法的某些特定步骤
 *
 */
abstract class TemplateBase {
    public function Method1() {
        echo "abstract Method1<br/>";
    }
    public function Method2() {
        echo "abstract Method2<br/>";
    }
    public function Method3() {
        echo "abstract Method3<br/>";
    }
    public function doSomeThing() {
        $this->Method1();
        $this->Method2();
        $this->Method3();
    }
}
class TemplateObject extends TemplateBase {
}
class TemplateObject1 extends TemplateBase {
    public function Method3() {
        echo "TemplateObject1 Method3<br/>";
    }
}
class TemplateObject2 extends TemplateBase {
    public function Method2() {
        echo "TemplateObject2 Method2<br/>";
    }
}
// 实例化
$objTemplate = new TemplateObject();
$objTemplate1 = new TemplateObject1();
$objTemplate2 = new TemplateObject2();
$objTemplate->doSomeThing();
$objTemplate1->doSomeThing();
$objTemplate2->doSomeThing();
Copy after login


其他相关设计模式:

备忘录模式(Memento模式)
观察者模式(Observer模式)
模板方法模式(Template Method模式)
命令模式(command模式)
组合模式(composite模式)
享元模式(flyweight模式)
策略模式(strategy模式)
状态模式(state模式)
适配器模式(adapter模式)
工厂模式(factory模式)
原型模式(prototype模式)
外观模式(facade模式)
单例模式(singleton模式)
桥梁模式(bridge模式)
装饰模式(decorator模式)
抽象工厂模式(abstract factory模式)
建造者模式(Builder模式)
访问者模式(Visitor模式)
解释器模式(Interpreter模式)
中介者模式(Mediator模式)
职责链模式(Chain Of Responsibility模式)
代理模式(Proxy模式)
迭代器模式(Interator模式)
数据访问对象模式(DAO模式)
委托模式(Delegation模式)



本文地址:

转载随意,但请附上文章地址:-)

source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Recommendations
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!