设计模式之-结构型-桥接模式
# 概述
桥接模式是一种结构性设计模式,它通过将抽象部分与其实现部分分离,使两者可以独立变化。桥接模式的核心是将接口的层次结构分离,使得客户端不需要了解实现的细节,从而提高了系统的灵活性和可扩展性。
# 角色
桥接模式主要由以下几个部分组成:
- 抽象类(Abstraction):定义了抽象的接口,并维护一个指向实现部分的引用。
- 扩展抽象类(RefinedAbstraction):对抽象类进行扩展,增加更具体的行为。
- 实现接口(Implementor):定义了实现的接口,不需要与抽象类完全一致。
- 具体实现类(ConcreteImplementor):实现了实现接口的具体类。
# 使用场景
- 需要将一个类的抽象部分与其实现部分分离,使它们可以独立变化时。
- 在多个类的实现之间需要减少耦合度时。
- 当需要在运行时切换实现时。
# 代码示例
// 实现接口
interface Implementor {
void implementation();
}
// 具体实现类A
class ConcreteImplementorA implements Implementor {
@Override
public void implementation() {
System.out.println("ConcreteImplementorA: Implementation method.");
}
}
// 具体实现类B
class ConcreteImplementorB implements Implementor {
@Override
public void implementation() {
System.out.println("ConcreteImplementorB: Implementation method.");
}
}
// 抽象类
abstract class Abstraction {
protected Implementor implementor;
protected Abstraction(Implementor implementor) {
this.implementor = implementor;
}
public abstract void operation();
}
// 扩展抽象类
class RefinedAbstraction extends Abstraction {
public RefinedAbstraction(Implementor implementor) {
super(implementor);
}
@Override
public void operation() {
System.out.print("RefinedAbstraction: ");
implementor.implementation();
}
}
// 客户端代码
public class Client {
public static void main(String[] args) {
Implementor implementorA = new ConcreteImplementorA();
Abstraction abstractionA = new RefinedAbstraction(implementorA);
abstractionA.operation();
Implementor implementorB = new ConcreteImplementorB();
Abstraction abstractionB = new RefinedAbstraction(implementorB);
abstractionB.operation();
}
}
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
# 总结
桥接模式通过将抽象与实现分离,减少了系统中的耦合度,提高了系统的灵活性和可扩展性。这种模式在需要动态选择实现或在不同的实现间切换时特别有效。理解和掌握桥接模式对于软件开发者来说是非常重要的。
最后更新时间: 2024/12/26, 17:56:54