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. Linux——搭建Samba(CIFS)服务器

    一.Samba的基本概念 Samba服务:是提供基于Linux和Windows的共享文件服务,服务端和客户端都可以是Linux或Windows操作系统.可以基于特定的用户访问,功能比NFS更强大. S ...

  2. python实现色彩空间转换

    目录: (一)调用转换函数实现图像色彩空间转换------ cv2.cvtColor函数 (二)色彩空间转换,利用inrange函数过滤视频中的颜色,实现跟踪某一颜色 正文: (一)调用转换函数实现图 ...

  3. [gym102978D]Do Use FFT

    前置知识 (以下内容并不严谨,可以参考论文<转置原理的简单介绍>) 对于一个算法,其为线性算法当且仅当仅包含以下操作: 1.$read\ i$,将$r_{i}$的值赋为(下一个)读入的元素 ...

  4. [nowcoder5669J]Jumping on the Graph

    考虑枚举$k$并求出$f(k)=\sum_{i=1}^{n}\limits\sum_{j=i+1}^{n}\limits [D(i,j)\le k]$,那么答案就是$\sum_{i=1}^{1e9}( ...

  5. *(volatile unsigned int *)的理解

    1. 解释 前面是无符号整型unsigned int的指针, 后面加一个地址,就是无符号整型的地址,前面又一个星号就是这个地址的值. 2.volatile 同步 因为同一个东西可能在不同的存储介质中有 ...

  6. 直接插入100w数据报错

    ### Cause: com.mysql.cj.jdbc.exceptions.PacketTooBigException: Packet for query is too large (77,600 ...

  7. javascript-初级-day03自定义属性

    day01-自定义属性应用 <!DOCTYPE HTML> <html> <head> <meta http-equiv="Content-Type ...

  8. shiro 学习笔记

    1. 权限管理 1.1 什么是权限管理? 权限管理实现对用户访问系统的控制,按照安全规则或者安全策略,可以控制用户只能访问自己被授权的资源 权限管理包括用户身份认证和授权两部分,简称认证授权 1.2 ...

  9. 百胜中国使用Rainbond实现云原生落地的实践

    百胜中国使用Rainbond实现云原生落地的实践 关于百胜中国 自从1987年第一家餐厅开业以来,截至2021年第二季度,百胜中国在中国大陆的足迹遍布所有省市自治区,在1500多座城镇经营着11023 ...

  10. Yarp 让系统内调度更灵活

    简介 Yarp 是微软团队开发的一个反向代理组件, 除了常规的 http 和 https 转换通讯,它最大的特点是可定制化,很容易根据特定场景开发出需要的定制代理通道. 详细介绍:https://de ...