Python设计模式之抽象工厂模式原理与用法详解
作者:Andy冉明 时间:2023-01-25 16:05:43
本文实例讲述了Python设计模式之抽象工厂模式原理与用法。分享给大家供大家参考,具体如下:
抽象工厂模式(Abstract Factory Pattern):提供一个创建一系列相关或相互依赖对象的接口,而无需指定它们的类
下面是一个抽象工厂的demo:
#!/usr/bin/env python
# -*- coding:utf-8 -*-
__author__ = 'Andy'
"""
大话设计模式
设计模式——抽象工厂模式
抽象工厂模式(Abstract Factory Pattern):提供一个创建一系列相关或相互依赖对象的接口,而无需指定它们的类
"""
import sys
#抽象用户表类
class User(object):
def get_user(self):
pass
def insert_user(self):
pass
#抽象部门表类
class Department(object):
def get_department(self):
pass
def insert_department(self):
pass
#操作具体User数据库类-Mysql
class MysqlUser(User):
def get_user(self):
print 'MysqlUser get User'
def insert_user(self):
print 'MysqlUser insert User'
#操作具体Department数据库类-Mysql
class MysqlDepartment(Department):
def get_department(self):
print 'MysqlDepartment get department'
def insert_department(self):
print 'MysqlDepartment insert department'
#操作具体User数据库-Orcal
class OrcaleUser(User):
def get_user(self):
print 'OrcalUser get User'
def insert_user(self):
print 'OrcalUser insert User'
#操作具体Department数据库类-Orcal
class OrcaleDepartment(Department):
def get_department(self):
print 'OrcalDepartment get department'
def insert_department(self):
print 'OrcalDepartment insert department'
#抽象工厂类
class AbstractFactory(object):
def create_user(self):
pass
def create_department(self):
pass
class MysqlFactory(AbstractFactory):
def create_user(self):
return MysqlUser()
def create_department(self):
return MysqlDepartment()
class OrcaleFactory(AbstractFactory):
def create_user(self):
return OrcaleUser()
def create_department(self):
return OrcaleDepartment()
if __name__ == "__main__":
db = sys.argv[1]
myfactory = ''
if db == 'Mysql':
myfactory = MysqlFactory()
elif db == 'Orcal':
myfactory = OrcaleFactory()
else:
print "不支持的数据库类型"
exit(0)
user = myfactory.create_user()
department = myfactory.create_department()
user.insert_user()
user.get_user()
department.insert_department()
department.get_department()
上面类的设计如下图:
优点:
具体工厂类如MysqlFactory在一个应用中只需要初始化一次,这样改动一个具体工厂变得很容易,只需要改变具体工厂就可以改变整个产品的配置。
具体的创建实例过程与客户端分离,客户端通过他们的抽象接口操纵实例,产品的具体类名也被具体工厂的实现分离,不会出现在客户端代码中
缺点:在新增一个具体工厂就需要增加多个类才能实现
希望本文所述对大家Python程序设计有所帮助。
来源:https://www.cnblogs.com/onepiece-andy/p/python-abstract-factory-pattern.html
标签:Python,设计模式,抽象工厂模式
0
投稿
猜你喜欢
js图片随机显示技巧
2007-08-19 20:20:00
python实现将excel文件转化成CSV格式
2021-10-16 05:23:50
快速让MySQL数据库服务器支持远程连接
2010-01-16 13:06:00
oracle下巧用bulk collect实现cursor批量fetch的sql语句
2009-03-04 10:43:00
Docker-Compose创建mysql容器详解
2024-01-17 06:10:19
一些Python中的二维数组的操作方法
2022-10-21 16:14:42
PHP入门教程之会话控制技巧(cookie与session)
2023-11-16 00:13:39
pytest使用@pytest.mark.parametrize()实现参数化的示例代码
2022-07-17 07:54:01
PHP基础之运算符的使用方法
2023-11-20 17:33:55
VUEJS实战之修复错误并且美化时间(2)
2023-07-02 17:01:24
keras的ImageDataGenerator和flow()的用法说明
2021-12-12 08:54:57
基于Go Int转string几种方式性能测试
2024-05-08 10:17:04
微信小程序地图定位的实现方法实例
2023-08-25 10:13:10
Python中assert函数的使用(含源代码)
2022-07-18 19:46:49
asp中数组的用法
2008-05-12 22:29:00
python字符串str和字节数组相互转化方法
2022-02-14 08:31:48
python 美化输出信息的实例
2022-04-15 09:53:54
win10系统Anaconda和Pycharm的Tensorflow2.0之CPU和GPU版本安装教程
2021-07-25 09:43:52
SQL Server 2005数据库镜像配置脚本示例
2008-04-12 14:49:00
ASP 判断是否有中文的代码
2011-04-15 11:07:00