这标题格式是不是要该一下啊,我去,要是个字符才可以。。。
通用代码,我是引用了”设计模式之禅“,这也是自己对这本书的内容的总结。谢谢阅读。
组合模式的定义如下:
将对象组合成树形结构以表示“部分-整体”的层次结构,使得用户对单个对象和组合对象的使用具有一致性
再本人看来,组合模式就是把类A和类B的共同部分抽象出来形成接口。对于树形结构(如二叉树形式的)很合适。恩,就是这么简单的模式,说不定自己就在用了。
通用代码:
//抽象部分
public abstract class Componet
{
//添加抽象的功能。
public void doSomething(){}
}
//树枝构件,此处就是右子树
public class Composite extends Component
{
private ArriayList<Component> componentArrayList=new ArrayList<Component>();
public void add(Component componet)
{
this.componentArrayList.add(componet);
}
public void remove(Component component)
{
this.componentArrayList.remove(component);
}
public ArrayList<Component> getChidren()
{
return this.componentArrayList;
}
}
//树叶结构,可以看做是左子树。一般左子树是抽象后的最小的单位。
public class Leaf extends Component
{
//覆写父类的方法,添加自己的代码
public void doSomething(){}
}
组合模式的优点
2025 - 快车库 - 我的知识库 重庆启连科技有限公司 渝ICP备16002641号-10
企客连连 表单助手 企服开发 榜单123