桥接设计模式-手机软件何时统一-大话设计模式

需求:

桥接设计模式-手机软件何时统一-大话设计模式_第1张图片

图1:

桥接设计模式-手机软件何时统一-大话设计模式_第2张图片

图2:

桥接设计模式-手机软件何时统一-大话设计模式_第3张图片

桥接设计模式-手机软件何时统一-大话设计模式_第4张图片


图3:

桥接设计模式-手机软件何时统一-大话设计模式_第5张图片



类结构:

桥接设计模式-手机软件何时统一-大话设计模式_第6张图片

public class Main {
public static void main(String[] args) {
	Soft soft=new GameSoft();
	soft.setName("泡泡堂");
	SanXingBrand b=new SanXingBrand();
	b.setName("三星手机");
	b.handGame(soft);
}
}

public abstract class Brand {
	protected Soft soft;
	public Brand(){}
	public Brand(Soft soft){
		this.soft=soft;
	}
	private String name;

	public String getName() {
		return name;
	}

	public void setName(String name) {
		this.name = name;
	}
}

//三星
public class SanXingBrand extends Brand{

	public void handGame(Soft soft){
		this.soft=soft;
		System.out.println(this.getName()+"玩"+soft.getName());
	}
}

public abstract class Soft {
private String name;

public String getName() {
	return name;
}

public void setName(String name) {
	this.name = name;
}
}

public class GameSoft extends Soft{

}


你可能感兴趣的:(桥接设计模式-手机软件何时统一-大话设计模式)