首页 > 其他 > 详细

抽象工厂模式

时间:2017-12-21 23:56:38      阅读:304      评论:0      收藏:0      [点我收藏+]

interface Factory {
public static function getDB();   //接口里的类不用实现,下面的子类来具体实现
}

class MySQLFactory implements Factory {
public static function getDB() {
return new MySQL();
}
}

class SqliteFactory implements Factory {
public static function getDB() {
return new Sqlite();
}
}

class MyPDOFactory implements Factory {
public static function getDB() {
return new MyPDO();
}
}


// 配置文件
$fact = ‘MyPDOFactory‘;
$db = MyPDOFactory::getDB();
print_r($db);

抽象工厂模式

原文:http://www.cnblogs.com/aiit/p/8082898.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!