23种设计模式--Bridge模式
Posted 灬鬼谷灬
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了23种设计模式--Bridge模式相关的知识,希望对你有一定的参考价值。
面向对象的设计原则:高内聚、低耦合
软件重构原则:小步快跑------抽取的思想(抽取函数、抽取类、抽取接口);对扩展开放、对修改封闭
设计模式分类如下:
Bridge模式主要是解决多维度问题,什么意思呢?类似于n*m这个公式,n种具体实现和m种具体的实现,最多可以有n*m种组合方式。下面这篇文章对Bridge模式讲解的通俗易懂,于是转了过来。
就拿汽车在路上行驶的来说。即有小汽车又有公共汽车,它们都不但能在市区中的公路上行驶,也能在高速公路上行驶。这你会发现,对于交通工具(汽车)有不同的类型,然而它们所行驶的环境(路)也在变化,在软件系统中就要适应两个方面的变化?怎样实现才能应对这种变化呢?
概述:
在软件系统中,某些类型由于自身的逻辑,它具有两个或多个维度的变化,那么如何应对这种“多维度的变化”?如何利用面向对象的技术来使得该类型能够轻松的沿着多个方向进行变化,而又不引入额外的复杂度?这就要使用Bridge模式。
意图:
将抽象部分与实现部分分离,使它们都可以独立的变化。
——《设计模式》GOF
结构图:
传统的做法:
通过类继承的方式来做上面的例子;
先看一下类结构图:
代码实现:
1
namespace
CarRunOnRoad
2 {
3 //路的基类;
4 public class Road
5 {
6 public virtual void Run()
7 {
8 Console.WriteLine("在路上");
9 }
10 }
11 //高速公路;
12 public class SpeedWay : Road
13 {
14 public override void Run()
15 {
16 Console.WriteLine("高速公路");
17 }
18 }
19 //市区街道;
20 public class Street : Road
21 {
22 public override void Run()
23 {
24 Console.WriteLine("市区街道");
25 }
26 }
27 //小汽车在高速公路上行驶;
28 public class CarOnSpeedWay : SpeedWay
29 {
30 public override void Run()
31 {
32 Console.WriteLine("小汽车在高速公路上行驶");
33 }
34 }
35 //公共汽车在高速公路上行驶;
36 public class BusOnSpeedWay : SpeedWay
37 {
38 public override void Run()
39 {
40 Console.WriteLine("公共汽车在高速公路上行驶");
41 }
42 }
43 //小汽车在市区街道上行驶;
44 public class CarOnStreet : Street
45 {
46 public override void Run()
47 {
48 Console.WriteLine("汽车在街道上行驶");
49 }
50 }
51 //公共汽车在市区街道上行驶;
52 public class BusOnStreet : Street
53 {
54 public override void Run()
55 {
56 Console.WriteLine("公共汽车在街道上行驶");
57 }
58 }
59
60}
2 {
3 //路的基类;
4 public class Road
5 {
6 public virtual void Run()
7 {
8 Console.WriteLine("在路上");
9 }
10 }
11 //高速公路;
12 public class SpeedWay : Road
13 {
14 public override void Run()
15 {
16 Console.WriteLine("高速公路");
17 }
18 }
19 //市区街道;
20 public class Street : Road
21 {
22 public override void Run()
23 {
24 Console.WriteLine("市区街道");
25 }
26 }
27 //小汽车在高速公路上行驶;
28 public class CarOnSpeedWay : SpeedWay
29 {
30 public override void Run()
31 {
32 Console.WriteLine("小汽车在高速公路上行驶");
33 }
34 }
35 //公共汽车在高速公路上行驶;
36 public class BusOnSpeedWay : SpeedWay
37 {
38 public override void Run()
39 {
40 Console.WriteLine("公共汽车在高速公路上行驶");
41 }
42 }
43 //小汽车在市区街道上行驶;
44 public class CarOnStreet : Street
45 {
46 public override void Run()
47 {
48 Console.WriteLine("汽车在街道上行驶");
49 }
50 }
51 //公共汽车在市区街道上行驶;
52 public class BusOnStreet : Street
53 {
54 public override void Run()
55 {
56 Console.WriteLine("公共汽车在街道上行驶");
57 }
58 }
59
60}
以上是关于23种设计模式--Bridge模式的主要内容,如果未能解决你的问题,请参考以下文章