我是靠谱客的博主 现代项链,最近开发中收集的这篇文章主要介绍python设计模式-工厂模式,觉得挺不错的,现在分享给大家,希望可以做个参考。

概述

    在工厂设计模式中,客户端可以请求一个对象,但是不用根据对象来自哪里,工厂根据不同的需要返回不同的对象(也就是说,工厂模式的中心思想是简化对象的创建

    工厂通常有两种形式,工厂方法和抽象工厂,工厂方法对不同的输入参数返回不同的对象;抽象工厂是一组用于创建一系列相关对象的工厂方法。


1. 工厂方法

    对不同的输入返回不同的对象

import xml.etree.ElementTree as etree
import json

class JSONConnector:
    def __init__(self, filepath):
        #具体初始化
    def parsed_data(self):
        #返回获取的数据
        
class XMLConnector:
    def __init__(self, filepath):
        #具体初始化
    def parsed_data(self):
        #返回获取的数据
        
def connection_factory(filepath):
    #if JSON file
    #JSONConnector
    #elif XML file
    #XMLConnector

def connect_to(filepath):
    factory = None
    try:
        factory = connection_factory(filepath)
    except ValueError as ve:
        raise ValueError('Can not connect to ()'.format(filepath))
    return factory

def main():
    factory = connect_to(filepath)


2. 抽象工厂

    是一组创建用于创建一系列相关对象的工厂方法

class Frog:
    def __init__(self, name):
    def __str__(self):
    def interact_with(self, obstacle):

class Bug:
    def __str__(self):
    def action(self):

class FrogWorld:
    def __init__(self, name):
    def __str__(self):
    def make_charactor(self):
    def make_obstacle(self):
#-----------------------------
class Wizard:
    def __init__(self, name):
    def __str__(self):
    def interact_with(self, obstacle):

class Ork:
    def __str__(self):
    def action(self):

class WizardWorld:
    def __init__(self, name):
    def __str__(self):
    def make_charactor(self):
    def make_obstacle(self):
#-----------------------------
class GameEnvironment:
    def __init__(self, factory):
        self.hero = factory.make_charactor()
        self.obstacle = factory.make_obstacle()
    
    def play(self):
        self.hero.interact_with(self.obstacle)
#-----------------------------
def main():
    #if 条件一
    #game = FrogWorld
    #elif 条件二
    #game = WizardWorld      



最后

以上就是现代项链为你收集整理的python设计模式-工厂模式的全部内容,希望文章能够帮你解决python设计模式-工厂模式所遇到的程序开发问题。

如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(31)

评论列表共有 0 条评论

立即
投稿
返回
顶部