返回顶部
扩大
缩小

Heaton

中介者模式(十七)

中介者模式

中介者模式(Mediator Pattern)是用来降低多个对象和类之间的通信复杂性。这种模式提供了一个中介类,该类通常处理不同类之间的通信,并支持松耦合,使代码易于维护。中介者模式属于行为型模式。

介绍

意图:用一个中介对象来封装一系列的对象交互,中介者使各对象不需要显式地相互引用,从而使其耦合松散,而且可以独立地改变它们之间的交互。

主要解决:对象与对象之间存在大量的关联关系,这样势必会导致系统的结构变得很复杂,同时若一个对象发生改变,我们也需要跟踪与之相关联的对象,同时做出相应的处理。

何时使用:多个类相互耦合,形成了网状结构。

如何解决:将上述网状结构分离为星型结构。

关键代码:对象 Colleague 之间的通信封装到一个类中单独处理。

应用实例: 1、中国加入 WTO 之前是各个国家相互贸易,结构复杂,现在是各个国家通过 WTO 来互相贸易。 2、机场调度系统。 3、MVC 框架,其中C(控制器)就是 M(模型)和 V(视图)的中介者。

优点: 1、降低了类的复杂度,将一对多转化成了一对一。 2、各个类之间的解耦。 3、符合迪米特原则。

缺点:中介者会庞大,变得复杂难以维护。

使用场景: 1、系统中对象之间存在比较复杂的引用关系,导致它们之间的依赖关系结构混乱而且难以复用该对象。 2、想通过一个中间类来封装多个类中的行为,而又不想生成太多的子类。

注意事项:不应当在职责混乱的时候使用。

package com.tzytzy.Mediator.ex1;

public abstract class Person {
    private String name;
    private int condition;
    
    public Person(String name, int condition) {
        this.name = name;
        this.condition = condition;
    }
    
    public String getName() {
        return name;
    }
    public void setName(String name) {
        this.name = name;
    }
    public int getCondition() {
        return condition;
    }
    public void setCondition(int condition) {
        this.condition = condition;
    }
    
    public abstract void getPartner(Person person);
    
}
package com.tzytzy.Mediator.ex1;

public class Man extends Person {

    public Man(String name, int condition) {
        super(name, condition);
    }

    public void getPartner(Person person) {
        if(person instanceof Man) {
            System.out.println("我不是男同性恋");
        } else {
            if(this.getCondition() == person.getCondition()) {
                System.out.println(this.getName() + "" + person.getName() + "订婚");
            } else {
                System.out.println(this.getName() + "" + person.getName() + "耍流氓");
            }
        }
    }

}
package com.tzytzy.Mediator.ex1;

public class Woman extends Person {

    public Woman(String name, int condition) {
        super(name, condition);
    }

    public void getPartner(Person person) {
        if(person instanceof Woman) {
            System.out.println("我不是女同性恋");
        } else {
            if(this.getCondition() == person.getCondition()) {
                //门当户对
                System.out.println(this.getName() + "" + person.getName() + "订婚");
            } else {
                System.out.println(this.getName() + "" + person.getName() + "耍流氓");
            }
        }
    }
    
}
package com.tzytzy.Mediator.ex1;

public class MainClass {
    public static void main(String[] args) {
        Person zhangsan = new Man("张三",5);
        Person lisi = new Man("李四",6);
        
        Person xiannv = new Woman("仙女", 6);
        
        zhangsan.getPartner(xiannv);
        lisi.getPartner(xiannv);
        zhangsan.getPartner(lisi);
        
    }
}    

package com.tzytzy.Mediator.ex2;

public abstract class Person {
    private String name;
    private int condition;
    private Mediator mediator;

    
    public Person(String name, int condition, Mediator mediator) {
        super();
        this.name = name;
        this.condition = condition;
        this.mediator = mediator;
    }
    
    public Mediator getMediator() {
        return mediator;
    }
    public void setMediator(Mediator mediator) {
        this.mediator = mediator;
    }
    public String getName() {
        return name;
    }
    public void setName(String name) {
        this.name = name;
    }
    public int getCondition() {
        return condition;
    }
    public void setCondition(int condition) {
        this.condition = condition;
    }
    
    public abstract void getPartner(Person person);
    
}
package com.tzytzy.Mediator.ex2;

public class Woman extends Person {

    public Woman(String name, int condition,Mediator mediator) {
        super(name, condition, mediator);
    }

    public void getPartner(Person person) {
        this.getMediator().setWoman(this);
        this.getMediator().getPartner(person);
    }
    
}
package com.tzytzy.Mediator.ex2;

public class Man extends Person {

    public Man(String name, int condition,Mediator mediator) {
        super(name, condition, mediator);
    }

    public void getPartner(Person person) {
        this.getMediator().setMan(this);
        this.getMediator().getPartner(person);
    }
}
package com.tzytzy.Mediator.ex2;

public class Mediator {
    private Man man;
    private Woman woman;
    
    public void setMan(Man man) {
        this.man = man;
    }
    public void setWoman(Woman woman) {
        this.woman = woman;
    }
    
    public void getPartner(Person person) {
        if(person instanceof Man) {
            this.setMan((Man)person);
        } else {
            this.setWoman((Woman)person);
        }
        if(man == null || woman == null) {
            System.out.println("同性恋");
        } else {
            if(man.getCondition() == woman.getCondition()) {
                System.out.println(man.getName() + "" + woman.getName() + "结婚");
            } else {
                System.out.println(man.getName() + "" + woman.getName() + "耍流氓");
            }
        }
    }
    
}
package com.tzytzy.Mediator.ex2;

public class MainClass {
    public static void main(String[] args) {
        Mediator mediator = new Mediator();
        Person zhangsan = new Man("张三",7,mediator);
        Person lisi = new Man("李四",7,mediator);
        Person xiannv = new Woman("仙女",7,mediator);
        
        zhangsan.getPartner(lisi);

        xiannv.getPartner(lisi);
    }
}

 

posted on 2018-05-11 22:57  咘雷扎克  阅读(102)  评论(0编辑  收藏  举报

导航