java學習之三種常用設計模式

來源:互聯網
上載者:User

標籤:設計模式   代理模式   原廠模式   適配模式   

一、適配器設計模式

簡單來說,就是通過一個間接類來選擇性的來覆寫一個介面

interface Window{public void open() ;// 開啟視窗public void close() ;// 關閉視窗public void icon() ;// 最小化public void unicon() ;// 最大化}abstract class WindowAdapter implements Window{public void open(){}public void close(){}public void icon(){}public void unicon(){}};class MyWindow extends WindowAdapter{public void open(){System.out.println("開啟視窗!") ;}};public class AdpaterDemo{public static void main(String args[]){Window win = new MyWindow() ;win.open() ;}}

二、工廠設計模式

設計一個選擇吃橘子或者蘋果的例子,一般設計時可能會直接在主類中執行個體化對象,但通過工廠設計模式通過一個間接類可以減少主類中(用戶端)的代碼量

interface Fruit{public void eat() ;}class Apple implements Fruit{public void eat(){System.out.println("吃蘋果。。。") ;}};class Orange implements Fruit{public void eat(){System.out.println("吃橘子。。。") ;}};class Factory{// 工廠類public static Fruit getFruit(String className){Fruit f = null ;if("apple".equals(className)){f = new Apple() ;}if("orange".equals(className)){f = new Orange() ;}return f ;}};public class InterDemo{public static void main(String args[]){Fruit f = Factory.getFruit(args[0]) ;if(f!=null){f.eat() ;}}}

三、代理設計模式

以討債為例

interface Give{public void giveMoney() ;}class RealGive implements Give{public void giveMoney(){System.out.println("把錢還給我。。。。。") ;}};class ProxyGive implements Give{// 代理公司private Give give = null ;public ProxyGive(Give give){this.give = give ;}public void before(){System.out.println("準備:小刀、繩索、鋼筋、鋼據、手槍、毒品") ;}public void giveMoney(){this.before() ;this.give.giveMoney() ;// 代表真正的討債者完成討債的操作this.after() ;}public void after(){System.out.println("銷毀所有罪證") ;}};public class ProxyDemo{public static void main(String args[]){Give give = new ProxyGive(new RealGive()) ;give.giveMoney() ;}};


java學習之三種常用設計模式

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.