SOLID原则是一种编码的标准,为了避免不良设计,所有的软件开发人员都应该清楚这些原则。SOLID原则是由Robert C Martin推广并被广泛引用于面向对象编程中。正确使用这些规范将提升你的代码的可扩展性、逻辑性和可读性。
当开发人员按照不好的设计来开发软件时,代码将失去灵活性和健壮性。任何一点点小的修改都非常容易引起bug。因此,我们应该遵循SOLID原则。
首先我们需要花一些时间来了解SOLID原则,当你能够理解这些原则并正确使用时,你的代码质量将会得到大幅的提高。同时,它可以帮助你更好的理解一些优秀软件的设计。
为了理解SOLID原则,你必须清楚接口的用法,如果你还不理解接口的概念,建议你先读一读这篇文章。
下面我将用简单易懂的方式为你描述SOLID原则,希望能帮助你对这些原则有个初步的理解。
单一责任原则
一个类只能因为一个理由被修改。
A class should have one, and only one, reason to change.
一个类应该只为一个目标服务。并不是说每个类都只能有一个方法,但它们都应该与类的责任有直接关系。所有的方法和属性都应该努力做好同一类事情。当一个类具有多个目标或职责时,就应该创建一个新的类出来。
我们来看一下这段代码:
1public class OrdersReportService {
2
3 public List<OrderVO> getOrdersInfo(Date startDate, Date endDate) {
4 List<OrderDO> orders = queryDBForOrders(startDate, endDate);
5
6 return transform(orders);
7 }
8
9 private List<OrderDO> queryDBForOrders(Date startDate, Date endDate) {
10 // select * from order where date >= startDate and date < endDate;
11 }
12
13 private List<OrderVO> transform(List<OrderDO> orderDOList) {
14 //transform DO to VO
15 }
16}
这段代码就违反了单一责任原则。为什么会在这个类中执行sql语句?这样的操作应该放到持久化层,持久化层负责处理数据的持久化的相关操作,包括从数据库中存储或查询数据。所以这个职责不应该属于这个类。
transform方法同样不应该属于这个类,因为我们可能需要很多种类型的转换。
因此我们需要对代码进行重构,重构之后的代码如下(为了节省篇幅):
1public class OrdersReportService {
2
3 @Autowired
4 private OrdersReportDao ordersReportDao;
5 @Autowired
6 private Formatter formatter;
7 public List<OrderVO> getOrdersInfo(Date startDate, Date endDate) {
8 List<OrderDO> orders = ordersReportDao.queryDBForOrders(startDate, endDate);
9
10 return formatter.transform(orders);
11 }
12}
13
14public class OrdersReportDao {
15
16 public List<OrderDO> queryDBForOrders(Date startDate, Date endDate) {}
17}
18
19public class Formatter {
20
21 private List<OrderVO> transform(List<OrderDO> orderDOList) {}
22}
开闭原则
对扩展开放,对修改关闭。
Entities should be open for extension, but closed for modification.
软件实体(包括类、模块、函数等)都应该可扩展,而不用因为扩展而修改实体的内容。如果我们严格遵循这个原则,就可以做到修改代码行为时,不需要改动任何原始代码。
我们还是以一段代码为例:
1class Rectangle extends Shape {
2 private int width;
3 private int height;
4
5 public Rectangle(int width, int height) {
6 this.width = width;
7 this.height = height;
8 }
9}
10class Circle extends Shape {
11 private int radius;
12
13 public Circle(int radius) {
14 this.radius = radius;
15 }
16}
17class CostManager {
18 public double calculate(Shape shape) {
19 double costPerUnit = 1.5;
20 double area;
21 if (shape instanceof Rectangle) {
22 area = shape.getWidth() * shape.getHeight();
23 } else {
24 area = shape.getRadius() * shape.getRadius() * pi();
25 }
26
27 return costPerUnit * area;
28 }
29}
如果你想要计算正方形的面积,那么我们就需要修改calculate方法的代码。这就破坏了开闭原则。根据这个原则,我们不能修改原有代码,但是我们可以进行扩展。
所以我们可以把计算面积的方法放到Shape类中,再由每个继承它的子类自己去实现自己的计算方法。这样就不用修改原有的代码了。
里氏替换原则
里氏替换原则是由Barbara Liskov在1987年的“数据抽象“大会上提出的。Barbara Liskov和Jeannette Wing在1994年发表了论文对这一原则进行阐述:
如果φ(x)是类型T的属性,并且S是T的子类型,那么φ(y)就是S的属性。
Let φ(x) be a property provable about objects x of type T. Then φ(y) should be true for objects y of type S where S is a subtype of T.
Barbara Liskov给出了易于理解的版本,但是这一版本更依赖于类型系统:
1. Preconditions cannot be strengthened in a subtype.
2. Postconditions cannot be weakened in a subtype.
3. Invariants of the supertype must be preserved in a subtype.
Robert Martin在1996年提出了更加简洁、通顺的定义:
使用指向基类指针的函数也可以使用子类。
Functions that use pointers of references to base classes must be able to use objects of derived classes without knowing it.
更简单一点讲就是子类可以替代父类。
根据里氏替换原则,我们可以在接受抽象类(接口)的任何地方用它的子类(实现类)来替代它们。基本上,我们应该注意在编程时不能只关注接口的输入参数,还需要保证接口实现类的返回值都是同一类型的。
下面这段代码就违反了里氏替换原则:
1<?php
2interface LessonRepositoryInterface
3{
4 /**
5 * Fetch all records.
6 *
7 * @return array
8 */
9 public function getAll();
10}
11class FileLessonRepository implements LessonRepositoryInterface
12{
13 public function getAll()
14 {
15 // return through file system
16 return [];
17 }
18}
19class DbLessonRepository implements LessonRepositoryInterface
20{
21 public function getAll()
22 {
23 /*
24 Violates LSP because:
25 - the return type is different
26 - the consumer of this subclass and FileLessonRepository won't work identically
27 */
28 // return Lesson::all();
29 // to fix this
30 return Lesson::all()->toArray();
31 }
32}
33
译者注:这里没想到Java应该怎么实现,因此直接用了作者的代码,大家理解就好
接口隔离原则
不能强制客户端实现它不使用的接口。
A client should not be forced to implement an interface that it doesn’t use.
这个规则告诉我们,应该把接口拆的尽可能小。这样才能更好的满足客户的确切需求。
与单一责任原则类似,接口隔离原则也是通过将软件拆分为多个独立的部分来最大程度的减少副作用和重复代码。
我们来看一个例子:
1public interface WorkerInterface {
2
3 void work();
4 void sleep();
5}
6
7public class HumanWorker implements WorkerInterface {
8
9 public void work() {
10 System.out.println("work");
11 }
12 public void sleep() {
13 System.out.println("sleep");
14 }
15}
16
17public class RobotWorker implements WorkerInterface {
18
19 public void work() {
20 System.out.println("work");
21 }
22 public void sleep() {
23 // No need
24 }
25}
在上面这段代码中,我们很容易发现问题所在,机器人不需要睡觉,但是由于实现了WorkerInterface接口,它不得不实现sleep方法。这就违背了接口隔离的原则,下面我们一起修复一下这段代码:
1public interface WorkAbleInterface {
2
3 void work();
4}
5
6public interface SleepAbleInterface {
7
8 void sleep();
9}
10
11public class HumanWorker implements WorkAbleInterface, SleepAbleInterface {
12
13 public void work() {
14 System.out.println("work");
15 }
16 public void sleep() {
17 System.out.println("sleep");
18 }
19}
20
21public class RobotWorker implements WorkerInterface {
22
23 public void work() {
24 System.out.println("work");
25 }
26}
依赖倒置原则
高层模块不应该依赖于低层的模块,它们都应该依赖于抽象。
抽象不应该依赖于细节,细节应该依赖于抽象。
High-level modules should not depend on low-level modules. Both should depend on abstractions.
Abstractions should not depend on details. Details should depend on abstractions.
简单来讲就是:抽象不依赖于细节,而细节依赖于抽象。
通过应用依赖倒置模块,只需要修改依赖模块,其他模块就可以轻松得到修改。同时,低层模块的修改是不会影响到高层模块修改的。
我们来看这段代码:
1public class MySQLConnection {
2
3 public void connect() {
4 System.out.println("MYSQL Connection");
5 }
6}
7
8public class PasswordReminder {
9
10 private MySQLConnection mySQLConnection;
11
12 public PasswordReminder(MySQLConnection mySQLConnection) {
13 this.mySQLConnection = mySQLConnection;
14 }
15}
有一种常见的误解是,依赖倒置只是依赖注入的另一种表达方式,实际上两者并不相同。
在上面这段代码中,尽管将MySQLConnection类注入了PasswordReminder类,但它依赖于MySQLConnection。而高层模块PasswordReminder是不应该依赖于低层模块MySQLConnection的。因此这不符合依赖倒置原则。
如果你想要把MySQLConnection改成MongoConnection,那就要在PasswordReminder中更改硬编码的构造函数注入。
要想符合依赖倒置原则,PasswordReminder就要依赖于抽象类(接口)而不是细节。那么应该怎么改这段代码呢?我们一起来看一下:
1public interface ConnectionInterface {
2
3 void connect();
4}
5
6public class MySQLConnection implements ConnectionInterface {
7
8 public void connect() {
9 System.out.println("MYSQL Connection");
10 }
11}
12
13public class PasswordReminder {
14
15 private ConnectionInterface connection;
16
17 public PasswordReminder(ConnectionInterface connection) {
18 this.connection = connection;
19 }
20}
修改后的代码中,如果我们想要将MySQLConnection改成MongoConnection,就不需要修改PasswordReminder类的构造函数注入,因为这里PasswordReminder类依赖于抽象而非细节。
感谢阅读!
原文地址
https://medium.com/better-programming/solid-principles-simple-and-easy-explanation-f57d86c47a7f
译者点评
作者对于SOLID原则介绍的还是比较清楚的,但是里氏原则那里我认为说得还不是很明白,举的例子似乎也不是很明确。我理解的里氏替换原则是:子类可以扩展父类的功能,但不能修改父类方法。因此里氏替换原则可以说是开闭原则的一种实现。当然,这篇文章也只是大概介绍了SOLID的每个原则,大家可以通过查资料来进行更详细的了解。我相信理解了这些设计原则之后,你对程序设计就会有更加深入的认识。后面我也会继续推送一些关于设计原则的文章,欢迎关注。
扫码关注
有趣的灵魂在等你
本文分享自微信公众号 - 代码洁癖患者(Jackeyzhe2018)。
如有侵权,请联系 support@oschina.cn 删除。
本文参与“OSC源创计划”,欢迎正在阅读的你也加入,一起分享。
来源:oschina
链接:https://my.oschina.net/u/3610851/blog/4344299