Skip to content
This repository was archived by the owner on May 27, 2024. It is now read-only.

Latest commit

 

History

History
19 lines (14 loc) · 1.3 KB

README.md

File metadata and controls

19 lines (14 loc) · 1.3 KB

java-design-pattern

Build Status codecov JDK Version GitHub Repo stars

设计模式(Design Pattern)是前辈们对代码开发经验的总结,是解决特定问题的一系列套路。它不是语法规定,而是一套用来提高代码可复用性、可维护性、可读性、稳健性以及安全性的解决方案。

本项目用 maven 构建,使用 java8 进行简单实现,另外每种模式都有对应的 UML 类图进行描述。

git clone https://github.com/MaoLongLong/java-design-pattern.git
cd java-design-pattern

# compile and test
mvnw.cmd clean test  # on windows
./mvnw clean test  # on linux