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. Java日期API

    JDK8之前日期时间API java.util.Date类 表示特定的瞬间,精确到毫秒 构造器: Date():使用无参构造器创建的对象可以获取本地当前时间. Date(long date) 常用方法 ...

  2. uni-app nvue页面动态修改导航栏按钮

    话不多说上代码 let pages = getCurrentPages() let page = pages[pages.length - 1]; let currentWebview = page. ...

  3. MySQL、Oracle批量插入SQL的通用写法

    举个例子: 现在要批量新增User对象到数据库USER表中 public class User{ //姓名 private String name; //年龄 private Integer age; ...

  4. 《手把手教你》系列技巧篇(四十一)-java+ selenium自动化测试 - 处理iframe -上篇(详解教程)

    1.简介 原估计宏哥这里就不对iframe这个知识点做介绍和讲解了,因为前边的窗口切换就为这种网页处理提供了思路,另一个原因就是虽然iframe很强大,但是现在很少有网站用它了.但是还是有小伙伴或者童 ...

  5. centos7.2安装rabbitmq教程

    环境: centos7.2 rabbitmq依赖erlang,需要先安装erlang 1 安装erlang rpm -Uvh https://download.fedoraproject.org/pu ...

  6. 公司项目被扫出来一个Druid未授权访问漏洞

    这不是阿里druid的监控页面吗?接下来查看项目配置 1.在web.xml中有如下配置: <filter> <filter-name>DruidWebStatFilter< ...

  7. [第二章]c++学习笔记3(构造函数)

    成员函数的一种 (1)名字与类名相同,可以有参数,不能有返回值(void也不行) (2)作用是对对象初始化,如给成员变量赋初值 (3)如果定义类时没写构造函数,则编译器生成一个默认的无参数的构造函数( ...

  8. .NET Core中的鉴权授权正确方式(.NET5)

    一.简介 前后端分离的站点一般都会用jwt或IdentityServer4之类的生成token的方式进行登录鉴权.这里要说的是小项目没有做前后端分离的时站点登录授权的正确方式. 一.传统的授权方式 这 ...

  9. Springboot .properties或.yml配置文件读取pom.xml文件值

    有时候配置文件需要读取pom文件配置<properties></properties>中间自定义属性值的时候可以用@@获取 例:@package.parameter@ 然后还需 ...

  10. PHP数组详细介绍(带示例代码)

    PHP 中的数组实际上是一个有序映射.映射是一种把 values 关联到 keys 的类型.此类型在很多方面做了优化,因此可以把它当成真正的数组,或列表(向量),散列表(是映射的一种实现),字典,集合 ...