桥接模式:将抽象部分与它的实现部分解耦,使得两者都能独立变化
Abstraction 创建Person抽象类
public abstract class Person {
private Clothing clothing;
private String type;
public Clothing getClothing() {
return clothing;
}
public void setClothing(Clothing clothing) {
this.clothing = clothing;
}
public void setType(String type) {
this.type = type;
}
public String getType() {
return this.type;
}
public abstract void dress();
}
RefinedAbstraction 创建Man、Lady类
public class Man extends Person{
public Man() {
setType("男人");
}
@Override
public void dress() {
Clothing clothing = getClothing();
clothing.personDressCloth(this);
}
}
public class Lady extends Person {
public Lady() {
setType("女人");
}
@Override
public void dress() {
Clothing clothing = getClothing();
clothing.personDressCloth(this);
}
}
Implementor 创建Clothing抽象类
public abstract class Clothing {
public abstract void personDressCloth(Person person);
}
ConcreteImplementor 创建Jacket、Pants类
public class Jacket extends Clothing {
@Override
public void personDressCloth(Person person) {
System.out.println(person.getType() + "穿马甲");
}
}
public class Pants extends Clothing {
@Override
public void personDressCloth(Person person) {
System.out.println(person.getType() + "穿裤子");
}
}
测试类
public class Client {
public static void main(String[] args) {
Person man = new Man();
Person lady = new Lady();
Clothing jacket = new Jacket();
Clothing pants = new Pants();
jacket.personDressCloth(man);
pants.personDressCloth(man);
jacket.personDressCloth(lady);
pants.personDressCloth(lady);
}
}
输出结果
男人穿马甲
男人穿裤子
女人穿马甲
女人穿裤子
1.不需要在抽象和它的实现部分之间有一个固定的绑定关系,在程序运行时刻实现部分程序可以被选择或者切换。
2.类的抽象以及它的实现都应该可以通过生成子类的方法加以扩充。 这时桥接模式可以对不同的抽象接口和实现部分进行组合,并分别对它们进行扩充。
3.对一个抽象的实现部分的修改应对其他业务不产生影响,即其他业务的代码不必重新编译。
4.需要在多个对象间共享实现(可能使用引用计数),但同时需要对其他业务无感知。