An open API service indexing awesome lists of open source software.

https://github.com/chgl16/design-pattern

:ear_of_rice: Java设计模式
https://github.com/chgl16/design-pattern

java-design-patterns

Last synced: about 1 month ago
JSON representation

:ear_of_rice: Java设计模式

Awesome Lists containing this project

README

          

# Java设计模式

|模式(详解) | 全称(代码) | 类型 |
| --- | --- | --- |
| [工厂方法模式](https://blog.csdn.net/chenbetter1996/article/details/88359037) | [Factory Method Pattern](https://github.com/chgl16/design-pattern/tree/master/src/main/java/xyz/cglzwz/designpattern/fmp) | 创建型模式 |
| [抽象工厂模式](https://blog.csdn.net/chenbetter1996/article/details/88425815) | [Abstract Factory Pattern](https://github.com/chgl16/design-pattern/tree/master/src/main/java/xyz/cglzwz/designpattern/afp) | 创建型模式 |
| [建造者模式](https://blog.csdn.net/chenbetter1996/article/details/88542774) |[Builder Pattern](https://github.com/chgl16/design-pattern/tree/master/src/main/java/xyz/cglzwz/designpattern/bp) | 创建型模式|
| [单例模式](https://blog.csdn.net/chenbetter1996/article/details/88978119) | [Singleton Pattern](https://github.com/chgl16/design-pattern/tree/master/src/main/java/xyz/cglzwz/designpattern/sp) | 创建型模式 |