研磨设计模式解析及python代码实现——(二)外观模式(Facade)

时间:2014-05-09 19:07:03   收藏:0   阅读:317

一、外观模式定义

  为子系统中的一组接口提供一个一致的界面,使得此子系统更加容易使用。

二、书中python代码实现

  

bubuko.com,布布扣
 1 class AModuleApi:
 2     def testA(self):
 3         pass
 4 class AModuleImpl(AModuleApi):
 5     def testA(self):
 6         print "Now Call testA in AModule!"
 7 class BModuleApi:
 8     def testB(self):
 9         pass
10 class BModuleImpl(BModuleApi):
11     def testB(self):
12         print "Now Call testB in BModule!"
13 class CModuleApi:
14     def testC(self):
15         pass
16 class CModuleImpl(CModuleApi):
17     def testC(self):
18         print "Now Call testC in CModule!"
19 class Facade:
20     def test(self):
21         a=AModuleImpl()
22         a.testA()
23         b=BModuleImpl()
24         b.testB()
25         c=CModuleImpl()
26         c.testC()
27 Facade().test()
bubuko.com,布布扣

 

研磨设计模式解析及python代码实现——(二)外观模式(Facade),布布扣,bubuko.com

评论(0
© 2014 mamicode.com 版权所有 京ICP备13008772号-2  联系我们:gaon5@hotmail.com
迷上了代码!