디자인 모드 09 - 조합 모드
6427 단어 디자인 모드
파 트 라 고도 하 죠. - 전체 모드. 전체 와 부분 이 존재 할 때 클 라 이언 트 가 전체 와 부분의 차 이 를 무시 하 기 를 바 랍 니 다.
2. 사례
/**********************************************************************
* <pre>
* FILE : Demo01.java
* CLASS : Demo01
*
* AUTHOR : Liaokailin
*
* FUNCTION : TODO
*
*
*======================================================================
* CHANGE HISTORY LOG
*----------------------------------------------------------------------
* MOD. NO.| DATE | NAME | REASON | CHANGE REQ.
*----------------------------------------------------------------------
* |2014-3-5|Liaokailin| Created |
* DESCRIPTION:
* </pre>
***********************************************************************/
package org.demo.composite;
import java.util.ArrayList;
import java.util.Iterator;
/**
*
* Function :
* @author : Liaokailin
* CreateDate : 2014-3-5
* version : 1.0
*/
public class Demo01 {
@SuppressWarnings("unchecked")
public static void main(String args[]){
Node root = new Node("root") ;
root.add(new Leaf("-leaf1")) ;
Node c2 = new Node("-Node1") ;
c2.add(new Leaf("--leaf2")) ;
c2.add(new Leaf("--leaf3")) ;
root.add(c2) ;
c2 = new Node("-Node2");
c2.add(new Leaf("--Leaf4"));
c2.add(new Leaf("--Leaf5"));
root.add(c2);
root.operation() ;
}
}
interface Component{
void operation() ;
}
class Leaf implements Component{
private String name ;
public Leaf(String name ){this.name = name ;}
public String toString(){ return this.name ;}
@Override
public void operation() {
System.out.println(this) ;
}
}
class Node extends ArrayList implements Component{
private String name ;
public Node(String name){this.name = name ;}
public String toString(){return this.name ;}
@Override
public void operation() {
System.out.println(this) ;
for(Iterator it = iterator() ;it.hasNext();){ // iterator() :
((Component)(it.next())).operation() ;
}
}
}
허 용 된 결과:
root
-leaf1
-Node1
--leaf2
--leaf3
-Node2
--Leaf4
--Leaf5
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
디자인 모델 의 공장 모델, 단일 모델자바 는 23 가지 디자인 모델 (프로 그래 밍 사상/프로 그래 밍 방식) 이 있 습 니 다. 공장 모드 하나의 공장 류 를 만들어 같은 인 터 페 이 스 를 실현 한 일부 종 류 를 인 스 턴 스 로 만 드 는 것...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.