Heim  >  Artikel  >  php教程  >  php设计模式 abstract factory (抽象工厂模式)

php设计模式 abstract factory (抽象工厂模式)

WBOY
WBOYOriginal
2016-05-21 10:41:021126Durchsuche

25种php设计模式,你全都知道吗?下面用代码介绍抽象工厂模式(abstract factory模式)

<?php
/**
 * 抽象工厂方法模式
 *
 * 定义一个用于创建对象的接口,让子类决定将哪一个类实例化,使用一个类的实例化延迟到其子类
 */
/*
class DBFactory
{
    public static function create($type)
    {
        swtich($type)
        {
            case "Mysql":
                return new MysqlDB(); break;
            case "Postgre":
                return new PostgreDB(); break;
            case "Mssql":
                return new MssqlDB(); break;
        }
    }
}
*/
class DBFactory {
    public static function create($type) {
        $class = $type . "DB";
        return new $class;
    }
}
interface DB {
    public function connect();
    public function exec();
}
class MysqlDB implements DB {
    public function __construct() {
        echo "mysql db<br/>";
    }
    public function connect() {
    }
    public functionexec() {
    }
}
class PostgreDB implements DB {
    public function __construct() {
        echo "Postgre db<br/>";
    }
    public function connect() {
    }
    public function exec() {
    }
}
class MssqlDB implements DB {
    public function __construct() {
        echo "mssql db<br/>";
    }
    public function connect() {
    }
    public function exec() {
    }
}
$oMysql = DBFactory::create("Mysql");
$oPostgre = DBFactory::create("Postgre");
$oMssql = DBFactory::create("Mssql");


其他相关设计模式:

备忘录模式(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模式)

永久地址:

转载随意~请带上教程地址吧^^

Stellungnahme:
Der Inhalt dieses Artikels wird freiwillig von Internetnutzern beigesteuert und das Urheberrecht liegt beim ursprünglichen Autor. Diese Website übernimmt keine entsprechende rechtliche Verantwortung. Wenn Sie Inhalte finden, bei denen der Verdacht eines Plagiats oder einer Rechtsverletzung besteht, wenden Sie sich bitte an admin@php.cn