JAVA设计模式--简单介绍
2019獨角獸企業重金招聘Python工程師標準>>>
一、簡介
Design pattern 是眾多軟件開發人員經過漫長的試驗和錯誤總結出來的在軟件開發過程中面臨一般問題的解決方案,代表著最佳實踐。使用設計模式是為了重用代碼、讓代碼更容易被他人理解、保證代碼可靠性。
二、分類
2.1、創建型模式(Creational Patterns)
這些設計模式提供了一種在創建對象的同時隱藏創建邏輯的方式,而不是使用新的運算符直接實例化對象。這使得程序在判斷針對某個給定實例需要創建哪些對象時更加靈活。
創建型模式包含:
(1)工廠模式(Factory Pattern)
(2)抽象工廠模式(Abstract Factory Pattern)
(3)單例模式(Singleton Pattern)
(4)建造者模式(Builder Pattern)
(5)原型模式(Prototype Pattern)
2.2、結構型模式(Structural Patterns)
這些設計模式關注類和對象的組合。繼承的概念被用來組合接口和定義組合對象獲得的新功能的方式。
結構型模式包含:
(1)適配器模式(Adapter Pattern)
(2)橋接模式(Bridge Pattern)
(3)過濾器模式(Filter、Criteria Pattern)
(4)組合模式(Composite Pattern)
(5)裝飾器模式(Decorator Pattern)
(6)外觀模式(Facade Pattern)
(7)享元模式(Flyweight Pattern)
(8)代理模式(Proxy Pattern)
2.3、行為型模式(Behavioral Patterns)
這些設計模式特別關注對象之間的通信
行為型模式包含:
(1)責任鏈模式(Chain of Responsibility Pattern)
(2)命令模式(Command Pattern)
(3)解釋器模式(Interpreter Pattern)
(4)迭代器模式(Iterator Pattern)
(5)中介者模式(Mediator Pattern)
(6)備忘錄模式(Memento Pattern)
(7)觀察者模式(Observer Pattern)
(8)狀態模式(State Pattern)
(9)空對象模式(Null Object Pattern)
(10)策略模式(Strategy Pattern)
(11)模板模式(Template Pattern)
(12)訪問者模式(Visitor Pattern)
2.4、J2EE型模式(J2EE Patterns)
這些設計模式特別關心表現層是由 Sun Java Center 鑒定的。
(1)MVC 模式(MVC Pattern)
(2)業務代表模式(Business Delegate Pattern)
(3)組合實體模式(Composite Entity Pattern)
(4)數據訪問對象模式(Data Access Object Pattern)
(5)前端控制器模式(Front Controller Pattern)
(6)攔截過濾器模式(Intercepting Filter Pattern)
(7)服務定位器模式(Service Locator Pattern)
(8)傳輸對象模式(Transfer Object Pattern)
轉載于:https://my.oschina.net/CandyDesire/blog/354222
總結
以上是生活随笔為你收集整理的JAVA设计模式--简单介绍的全部內容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: centos6中三台物理机配置nginx
- 下一篇: 移动前端经验小结