Python版

https://github.com/faif/python-patterns/blob/master/behavioral/catalog.py

#!/usr/bin/env python
# -*- coding: utf-8 -*- """
A class that uses different static function depending of a parameter passed in
init. Note the use of a single dictionary instead of multiple conditions
""" __author__ = "Ibrahim Diop <ibrahim@sikilabs.com>" class Catalog(object):
"""catalog of multiple static methods that are executed depending on an init parameter
""" def __init__(self, param): # dictionary that will be used to determine which static method is
# to be executed but that will be also used to store possible param
# value
self._static_method_choices = {'param_value_1': self._static_method_1,
'param_value_2': self._static_method_2} # simple test to validate param value
if param in self._static_method_choices.keys():
self.param = param
else:
raise ValueError("Invalid Value for Param: {0}".format(param)) @staticmethod
def _static_method_1():
print("executed method 1!") @staticmethod
def _static_method_2():
print("executed method 2!") def main_method(self):
"""will execute either _static_method_1 or _static_method_2 depending on self.param value
"""
self._static_method_choices[self.param]() # Alternative implementation for different levels of methods
class CatalogInstance(object): """catalog of multiple methods that are executed depending on an init parameter
""" def __init__(self, param):
self.x1 = 'x1'
self.x2 = 'x2'
# simple test to validate param value
if param in self._instance_method_choices:
self.param = param
else:
raise ValueError("Invalid Value for Param: {0}".format(param)) def _instance_method_1(self):
print("Value {}".format(self.x1)) def _instance_method_2(self):
print("Value {}".format(self.x2)) _instance_method_choices = {'param_value_1': _instance_method_1,
'param_value_2': _instance_method_2} def main_method(self):
"""will execute either _instance_method_1 or _instance_method_2 depending on self.param value
"""
self._instance_method_choices[self.param].__get__(self)() class CatalogClass(object): """catalog of multiple class methods that are executed depending on an init parameter
""" x1 = 'x1'
x2 = 'x2' def __init__(self, param):
# simple test to validate param value
if param in self._class_method_choices:
self.param = param
else:
raise ValueError("Invalid Value for Param: {0}".format(param)) @classmethod
def _class_method_1(cls):
print("Value {}".format(cls.x1)) @classmethod
def _class_method_2(cls):
print("Value {}".format(cls.x2)) _class_method_choices = {'param_value_1': _class_method_1,
'param_value_2': _class_method_2} def main_method(self):
"""will execute either _class_method_1 or _class_method_2 depending on self.param value
"""
self._class_method_choices[self.param].__get__(None, self.__class__)() class CatalogStatic(object): """catalog of multiple static methods that are executed depending on an init parameter
""" def __init__(self, param):
# simple test to validate param value
if param in self._static_method_choices:
self.param = param
else:
raise ValueError("Invalid Value for Param: {0}".format(param)) @staticmethod
def _static_method_1():
print("executed method 1!") @staticmethod
def _static_method_2():
print("executed method 2!") _static_method_choices = {'param_value_1': _static_method_1,
'param_value_2': _static_method_2} def main_method(self):
"""will execute either _static_method_1 or _static_method_2 depending on self.param value
"""
self._static_method_choices[self.param].__get__(None, self.__class__)() def main():
"""
>>> c = Catalog('param_value_1').main_method()
executed method 1!
>>> Catalog('param_value_2').main_method()
executed method 2!
""" test = Catalog('param_value_2')
test.main_method() test = CatalogInstance('param_value_1')
test.main_method() test = CatalogClass('param_value_2')
test.main_method() test = CatalogStatic('param_value_1')
test.main_method() if __name__ == "__main__": main() ### OUTPUT ###
# executed method 2!
# Value x1
# Value x2
# executed method 1!

Python转载版

【编程思想】【设计模式】【行为模式Behavioral】catalog的更多相关文章

  1. 面向对象编程思想(前传)--你必须知道的javascript

    在写面向对象编程思想-设计模式中的js部分的时候发现很多基础知识不了解的话,是很难真正理解和读懂js面向对象的代码.为此,在这里先快速补上.然后继续我们的面向对象编程思想-设计模式. 什么是鸭子类型 ...

  2. 面向对象编程思想(前传)--你必须知道的javascript(转载)

    原文地址:http://www.cnblogs.com/zhaopei/p/6623460.html阅读目录   什么是鸭子类型 javascript的面向对象 封装 继承 多态 原型 this指向 ...

  3. Java编程思想重点笔记(Java开发必看)

    Java编程思想重点笔记(Java开发必看)   Java编程思想,Java学习必读经典,不管是初学者还是大牛都值得一读,这里总结书中的重点知识,这些知识不仅经常出现在各大知名公司的笔试面试过程中,而 ...

  4. PHP设计模式-策略模式 转

    策略模式(Strategy Pattern) 策略模式是对象的行为模式,用意是对一组算法的封装.动态的选择需要的算法并使用. 策略模式指的是程序中涉及决策控制的一种模式.策略模式功能非常强大,因为这个 ...

  5. .NET设计模式: 工厂模式

    .NET设计模式: 工厂模式(转) 转自:http://www.cnblogs.com/bit-sand/archive/2008/01/25/1053207.html   .NET设计模式(1): ...

  6. 面向对象编程思想(OOP)

    本文我将从面向对象编程思想是如何解决软件开发中各种疑难问题的角度,来讲述我们面向对象编程思想的理解,梳理面向对象四大基本特性.七大设计原则和23种设计模式之间的关系. 软件开发中疑难问题: 软件复杂庞 ...

  7. java编程思想

    Java编程思想,Java学习必读经典,不管是初学者还是大牛都值得一读,这里总结书中的重点知识,这些知识不仅经常出现在各大知名公司的笔试面试过程中,而且在大型项目开发中也是常用的知识,既有简单的概念理 ...

  8. 设计模式 之 Organizing the Catalog 组织目录

    Design patterns vary in their granularity and level of abstraction. Because thereare many design pat ...

  9. 设计模式 --迭代器模式(Iterator)

    能够游走于聚合内的每一个元素,同时还可以提供多种不同的遍历方式.   基本概念: 就是提供一种方法顺序访问一个聚合对象中的各个元素,而不是暴露其内部的表示.   使用迭代器模式的优点: 遍历集合或者数 ...

随机推荐

  1. OSI模型 & TCP/IP模型

    分层思想 分层思想:将复杂 的流程分解 为几个功能相对单一 的子过程 整个流程更加清晰 ,复杂问题简单化 更容易发现问题并针对性的解决问题 分层思想在网络中的应用 OSI模型 国际标准化组织(Inte ...

  2. SqlServer新建表操作DDL

    创建新表:1,五要素 2,not null 3,默认值 4,字段注释,表名称 5,索引 6,指定约束名称 -- ------------------------------ Table structu ...

  3. Part 18 $http service in AngularJS

    In Angular there are several built in services. $http service is one of them. In this video, we will ...

  4. mac下将python2.7改为python3

    mac下将python2.7改为python3 查看当前电脑python版本 python -V 修改.bash_profile文件 vi ~/.bash_profile //编辑bash_profi ...

  5. FZU ICPC 2020 寒假训练 2

    A - 排序 输入一行数字,如果我们把这行数字中的'5'都看成空格,那么就得到一行用空格分割的若 干非负整数(可能有些整数以'0'开头,这些头部的'0'应该被忽略掉,除非这个整数就是由 若干个'0'组 ...

  6. 问题 F: 背包问题

    题目描述 现在有很多物品(它们是可以分割的),我们知道它们每个物品的单位重量的价值v和重量w(1<=v,w<=10):如果给你一个背包它能容纳的重量为m(10<=m<=20), ...

  7. go微服务框架Kratos笔记(三)引入GORM框架

    介绍 GORM是一个使用Go语言编写的ORM框架.中文文档齐全,对开发者友好,支持主流数据库. GORM官方文档 安装 go get -u github.com/jinzhu/gorm 在kratos ...

  8. 菜鸡的Java笔记 - java 枚举

    枚举        枚举属于加强版的多例设计模式            多例设计模式与枚举        多例设计模式的本质在于构造方法的私有化.而后在类的内部产生若干个实例化对象,随后利用一个 st ...

  9. VS2013中using System.Windows.Forms;引用不成功

    命名空间"System"中不存在类型或命名空间名称"Windows" 项目右侧--解决资源管理器---引用---右键--添加引用---在.NET下拉框找---找 ...

  10. Taro 3.4 beta 发布: 支持 Preact 为应用开辟更多体积空间

    项目体积是困扰小程序开发者的一大问题,如果开发者使用 Taro React 进行开发,更是不得不引入接近 100K 的 React 相关依赖,这让项目体积变得更加捉襟见肘.因此,Taro v3.4 的 ...