博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Python策略模式实现源码分享
阅读量:5117 次
发布时间:2019-06-13

本文共 948 字,大约阅读时间需要 3 分钟。

1.让一个对象的某个方法可以随时改变,而不用更改对象的代码

2.对于动态类型的Python语言,不需要定义接口

3.基本的实现方法:用类作为参数传递

 

例如:

12_eg3.py

class Moveable:

    def move(self):

        print('Move...')

 

class MoveOnFeet(Moveable):

    def move(self):

        print("Move on Feet.")

 

class MoveOnWheel(Moveable):

    def move(self):

        print("Move on Wheels.")

 

class MoveObj:

    def set_move(self,moveable):

        self.moveable = moveable()

 

    def move(self):

        self.moveable.move()

 

class Test:

    def move(slef):

        print("I'm Fly.")

 

if __name__ == '__main__':

    m = MoveObj()

    m.set_move(Moveable)

    m.move()

    m.set_move(MoveOnFeet)

    m.move()

    m.set_move(MoveOnWheel)

    m.move()

    m.set_move(Test)

    m.move()

 

程序的运行结果为:

 

4.最简的实现方法:函数作为参数来传递

例如:

 

def movea():

    print('Move a.')

 

def moveb():

    print('Move b.')

 

class MoveObj:

    def set_move(self,moveable):

        self.moveable = moveable

 

    def move(self):

        self.moveable()

 

 

if __name__ == '__main__':

    m = MoveObj()

    m.set_move(movea)

    m.move()

    m.set_move(moveb)

    m.move()

 

程序的运行结果为:

 

 

原文链接:

 

转载于:https://www.cnblogs.com/space007/p/5953907.html

你可能感兴趣的文章
Andriod小型管理系统(Activity,SQLite库操作,ListView操作)(源代码下载)
查看>>
在Server上得到数据组装成HTML后导出到Excel。两种方法。
查看>>
浅谈项目需求变更管理
查看>>
经典算法系列一-快速排序
查看>>
设置java web工程中默认访问首页的几种方式
查看>>
ASP.NET MVC 拓展ViewResult实现word文档下载
查看>>
jQuery Mobile笔记
查看>>
8、RDD持久化
查看>>
第二次团队冲刺--2
查看>>
VMware Tools安装
查看>>
Linux上架设boost的安装及配置过程
查看>>
[转载]加密算法库Crypto——nodejs中间件系列
查看>>
zoj 2286 Sum of Divisors
查看>>
OO5~7次作业总结
查看>>
如何判断主机是大端还是小端(字节序)
查看>>
Centos7 日志查看工具
查看>>
使用Xshell密钥认证机制远程登录Linux
查看>>
OpenCV之响应鼠标(三):响应鼠标信息
查看>>
Android 画图之 Matrix(一)
查看>>
List<T>列表通用过滤模块设计
查看>>