-
Notifications
You must be signed in to change notification settings - Fork 1
/
Strategy.py
79 lines (54 loc) · 1.37 KB
/
Strategy.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
# -*- coding: utf-8 -*-
class Question(object):
"""
问题对象,没有使用策略模式之前的作法
"""
def __init__(self, admin=True):
self._admin = admin
def show(self):
"""
根据是否是管理员显示不同的信息
"""
if self._admin is True:
return "show page with admin"
else:
return "show page with user"
if __name__ == '__main__':
q = Question(admin=False)
print(q.show())
修改之后的使用策略模式的代码
import abc
class AbsShow(object):
"""
抽象显示对象
"""
__metaclass__ = abc.ABCMeta
@abc.abstractmethod
def show(self):
pass
class AdminShow(AbsShow):
"""
管理员的显示操作
"""
def show(self):
return "show with admin"
class UserShow(AbsShow):
"""
普通用户的显示操作
"""
def show(self):
return "show with user"
class Question(object):
"""
问题对象,使用策略模式之后的作法
"""
def __init__(self, show_obj):
self.show_obj = show_obj
def show(self):
return self.show_obj.show()
if __name__ == '__main__':
q = Question(show_obj=AdminShow())
print(q.show())
# 替换原来的显示对象,体现了策略模式的互换行为
q.show_obj = UserShow()
print(q.show())