组合模式
组合模式:将对象组合成树形结构以表示“部分-整体”的层次结构。Composite使得用户对单个对象和组合对象的使用具有一致性。引用场景如树形结构,父子的操作具有一致性。
类图如下:
典型的组合模式对象结构图:
php实现:
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 | <?php abstract class Component{ function __construct( $strName ){ $this ->m_strName = $strName ; } abstract function Add( $com ); protected function Remove( $com ){} abstract function Display( $nDepth ); } class Leaf extends Component{ function Add( $com ){ print_r( "Leaf can't add!" ); } function Display( $nDepth ){ $strtemp = "" ; for ( $i =0; $i < $nDepth ; $i ++){ $strtemp .= "-" ; } $strtemp = $strtemp .( $this ->m_strName). "\n" ; print_r( $strtemp ); } } class Composite extends Component{ protected $m_strName = "" ; protected $c = array (); function __construct( $strName ){ $this ->m_strName = $strName ; } function Add( $com ){ $this ->c[] = $com ; } function Remove( $com ){ $key = array_search ( $com , $this ->c); if ( $key != false)unset( $this ->c[ $key ]); } function Display( $nDepth ){ $strtemp = "" ; for ( $i =0; $i < $nDepth ; $i ++){ $strtemp .= "-" ; } $strtemp = $strtemp .( $this ->m_strName). "\n" ; print_r( $strtemp ); foreach ( $this ->c as $v ){ $v ->Display( $nDepth +2); } } } $p = new Composite( "第一级目录" ); $p ->Add( new Leaf( "第二级目录1" )); $s1 = new Leaf( "第二级目录2" ); $p ->Add( $s1 ); $s2 = new Composite( "第二级目录3" ); $s2 ->Add( new Leaf( "第三级目录1" )); $t1 = new Composite( "第三级目录2" ); $t1 ->Add( new Leaf( "第四级目录" )); $s2 ->Add( $t1 ); $p ->Add( $s2 ); $p ->Remove( $s1 ); $p ->Display(1); |
执行结果如下:
-第一级目录
---第二级目录1
---第二级目录3
-----第三级目录1
-----第三级目录2
-------第四级目录
【推荐】编程新体验,更懂你的AI,立即体验豆包MarsCode编程助手
【推荐】凌霞软件回馈社区,博客园 & 1Panel & Halo 联合会员上线
【推荐】抖音旗下AI助手豆包,你的智能百科全书,全免费不限次数
【推荐】轻量又高性能的 SSH 工具 IShell:AI 加持,快人一步