[php]php设计模式 Bridge (桥接模式)
摘要:
1 <?php 2 /** 3 * 桥接模式 4 * 5 * 将抽象部份与它实现部分分离,使用它们都可以有独立的变化 6 */ 7 abstractclass Implementor 8 { 9 abstractpublicfunction operation();10 }11 12 class ConcreteImplementorA extends Implementor13 {14 publicfunction operation()15 {16 echo"ConcreteImplementorA Operation<br/>";17 }18 }19 阅读全文
posted @ 2011-06-21 22:58
bluefrog
阅读(1574)
评论(0)
推荐(0)
浙公网安备 33010602011771号