设计模式 - 组合模式 ( Composite )

一. 树状结构专用模式

比较简单, 两个典型的例子

  1. 菜单栏列表里, 可以add子菜单栏和具体的菜单选项
  2. 文件系统里, 一个目录下面, 可以add子目录或具体的文件

二. 和享元模式(FlyWeight 共享元数据)搭配

可以参考 -> 享元模式

在这里插入图片描述
举个目录和文件的例子:

  • 文件系统里有directory和file两种类型
  • directory就是图中的Branch, file就是图中的Leaf, 他们都是Node类型的
  • 一个direcotry可以add(Node n)到List lists里, 也就是可以add另一个directory或者file
  • directory可以无穷无尽的嵌套子directory
abstract class Node {
    abstract public void printName();
}

class LeafNode extends Node {
    String content;

    public LeafNode(String content) {
        this.content = content;
    }

    @Override
    public void printName() {
        System.out.println(content);
    }
}

class BranchNode extends Node {
    List<Node> nodes = new ArrayList();  // 和LeafNode的主要区别就在于有没有这个List

    String name;

    public BranchNode(String name) {
        this.name = name;
    }

    @Override
    public void printName() {
        System.out.println(name);
    }

    public void add(Node n) {
        nodes.add(n);
    }
}


public class Main {
    public static void main(String[] args) {

        BranchNode root = new BranchNode("root");
        BranchNode chapter1 = new BranchNode("chapter1");
        BranchNode chapter2 = new BranchNode("chapter2");
        Node r1 = new LeafNode("r1");
        Node c11 = new LeafNode("c11");
        Node c12 = new LeafNode("c12");
        BranchNode b21 = new BranchNode("section21");
        Node c211 = new LeafNode("c211");
        Node c212 = new LeafNode("c212");

        root.add(chapter1);
        root.add(chapter2);
        root.add(r1);
        chapter1.add(c11);
        chapter1.add(c12);
        chapter2.add(b21);
        b21.add(c211);
        b21.add(c212);

        printTree(root, 0);
    }

    static void printTree(Node b, int depth) {
        for (int i = 0; i < depth; i++) System.out.print("--");
        b.printName();

        if (b instanceof BranchNode) {
            for (Node n : ((BranchNode) b).nodes) {
                printTree(n, depth + 1);
            }
        }
    }
}
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值