外观模式

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
59
60
61
interface Shape {
void draw();
}

class Rectangle implements Shape {

@Override
public void draw() {
System.out.println("Rectangle::draw()");
}
}

class Square implements Shape {

@Override
public void draw() {
System.out.println("Square::draw()");
}
}

class Circle implements Shape {

@Override
public void draw() {
System.out.println("Circle::draw()");
}
}

class ShapeMaker {
Shape circle;
Shape rectangle;
Shape square;

public ShapeMaker() {
circle = new Circle();
rectangle = new Rectangle();
square = new Square();
}

public void drawCircle() {
circle.draw();
}

public void drawRectangle() {
rectangle.draw();
}

public void drawSquare() {
square.draw();
}
}

public class FacadePatternDemo {
public static void main(String[] args) {
ShapeMaker shapeMaker = new ShapeMaker();

shapeMaker.drawCircle();
shapeMaker.drawRectangle();
shapeMaker.drawSquare();
}
}

外观模式
https://wangqian0306.github.io/2021/design-facade-pattern/
作者
WangQian
发布于
2021年7月21日
许可协议