您好,登錄后才能下訂單哦!
這篇文章主要介紹“Java設(shè)計(jì)模式中的外觀模式實(shí)例分析”,在日常操作中,相信很多人在Java設(shè)計(jì)模式中的外觀模式實(shí)例分析問(wèn)題上存在疑惑,小編查閱了各式資料,整理出簡(jiǎn)單好用的操作方法,希望對(duì)大家解答”Java設(shè)計(jì)模式中的外觀模式實(shí)例分析”的疑惑有所幫助!接下來(lái),請(qǐng)跟著小編一起來(lái)學(xué)習(xí)吧!
外觀模式(Facade) ,也叫“過(guò)程模式:外觀模式為子系統(tǒng)中的一組接口提供一個(gè)一致的界面,此模式定義了一個(gè)高層接口,這個(gè)接口使得這一子系統(tǒng)更加容易使用。
外觀模式通過(guò)定義一個(gè)一致的接口,用以屏蔽內(nèi)部子系統(tǒng)的細(xì)節(jié),使得調(diào)用端只需跟這個(gè)接口發(fā)生調(diào)用,而無(wú)需關(guān)心這個(gè)子系統(tǒng)的內(nèi)部細(xì)節(jié)。
類圖解析:
Facade:為調(diào)用端提供統(tǒng)一的調(diào)用接口,外觀類知道哪些子系統(tǒng)負(fù)責(zé)處理請(qǐng)求,從而將調(diào)用端的請(qǐng)求代理給適當(dāng)子系統(tǒng)對(duì)象。
Client:外觀接口的調(diào)用者。
SubSystem集合:指模塊或者子系統(tǒng),處理Facade對(duì)象指派的任務(wù),他是功能的實(shí)際提供者。
背景介紹:
組建一個(gè)家庭影院:DVD播放器、投影儀、自動(dòng)屏幕、環(huán)繞立體聲、爆米花機(jī),要求完成使用家庭影院的功能,通過(guò)直接用遙控器(統(tǒng)籌各設(shè)備開(kāi)關(guān))進(jìn)行控制,其過(guò)程為:
開(kāi)爆米花機(jī)
放下屏幕
開(kāi)投影儀
開(kāi)音響
開(kāi)DVD,選dvd
拿爆米花
調(diào)暗燈光
播放
觀影結(jié)束后,關(guān)閉各種設(shè)備.
DVD、Popcorn、Projector、Screen、Stereo、TheaterLight代碼如下:
public class DVDPlayer { // 使用單例模式 private static final DVDPlayer instance = new DVDPlayer(); private DVDPlayer() {} public static DVDPlayer getInstance() { return instance; } public void on() { System.out.println("dvd 打開(kāi)了..."); } public void off() { System.out.println("dvd 關(guān)閉了..."); } public void play() { System.out.println("dvd 播放中..."); } public void pause() { System.out.println("dvd 暫停了..."); } }
public class Popcorn { private static final Popcorn instance = new Popcorn(); private Popcorn(){} public static Popcorn getInstance() { return instance; } public void on() { System.out.println("爆米花機(jī)打開(kāi)了..."); } public void off() { System.out.println("爆米花機(jī)關(guān)閉了..."); } public void pop() { System.out.println("爆米花做好了..."); } }
public class Projector { private static final Projector instance = new Projector(); private Projector(){} public static Projector getInstance() { return instance; } public void on() { System.out.println("投影儀打開(kāi)了..."); } public void off() { System.out.println("投影儀關(guān)閉了..."); } public void focus() { System.out.println("投影儀聚焦中..."); } }
public class Screen { private static final Screen instance = new Screen(); private Screen(){} public static Screen getInstance() { return instance; } public void up() { System.out.println("屏幕上升..."); } public void down() { System.out.println("屏幕下降..."); } }
public class Stereo { private static final Stereo instance = new Stereo(); private Stereo(){} public static Stereo getInstance() { return instance; } public void on() { System.out.println("立體音響打開(kāi)..."); } public void off() { System.out.println("立體音響關(guān)閉..."); } public void up() { System.out.println("立體音響音量+..."); } public void down() { System.out.println("立體音響音量-..."); } }
public class TheaterLight { private static final TheaterLight instance = new TheaterLight(); private TheaterLight(){} public static TheaterLight getInstance() { return instance; } public void on() { System.out.println("燈光打開(kāi)..."); } public void off() { System.out.println("燈光關(guān)閉..."); } public void dim() { System.out.println("燈光亮度調(diào)暗..."); } public void bright() { System.out.println("燈光亮度調(diào)亮..."); } }
HomeTheaterFacade(統(tǒng)籌各設(shè)備開(kāi)關(guān))
public class HomeTheaterFacade { private DVDPlayer dvdPlayer; private Popcorn popcorn; private Projector projector; private Stereo stereo; private Screen screen; private TheaterLight theaterLight; public HomeTheaterFacade() { this.dvdPlayer = DVDPlayer.getInstance(); this.popcorn = Popcorn.getInstance(); this.projector = Projector.getInstance(); this.stereo = Stereo.getInstance(); this.screen = Screen.getInstance(); this.theaterLight = TheaterLight.getInstance(); } /** * 準(zhǔn)備開(kāi)始 */ public void ready() { popcorn.on(); popcorn.pop(); screen.down(); projector.on(); projector.focus(); stereo.on(); dvdPlayer.on(); theaterLight.dim(); } /** * 播放 */ public void play() { dvdPlayer.play(); } /** * 暫停 */ public void pause() { dvdPlayer.pause(); } /** * 結(jié)束 */ public void end() { popcorn.off(); theaterLight.bright(); screen.up(); projector.off(); stereo.off(); dvdPlayer.off(); } }
Client(測(cè)試)
public class Client { public static void main(String[] args) { HomeTheaterFacade homeTheaterFacade = new HomeTheaterFacade(); System.out.println("----------準(zhǔn)備開(kāi)始-----------"); homeTheaterFacade.ready(); System.out.println("----------開(kāi)始播放-----------"); homeTheaterFacade.play(); System.out.println("----------播放暫停-----------"); homeTheaterFacade.pause(); System.out.println("----------播放結(jié)束-----------"); homeTheaterFacade.end(); } }
實(shí)現(xiàn)結(jié)果:
外觀模式對(duì)外屏蔽了子系統(tǒng)的細(xì)節(jié),因此外觀模式降低了客戶端對(duì)子系統(tǒng)使用的復(fù)雜性。
外觀模式對(duì)客戶端與子系統(tǒng)的耦合關(guān)系-解耦,讓子系統(tǒng)內(nèi)部的模塊更易維護(hù)和擴(kuò)展
通過(guò)合理的使用外觀模式,可以幫我們更好的劃分訪問(wèn)的層次。
當(dāng)系統(tǒng)需要進(jìn)行分層設(shè)計(jì)時(shí),可以考慮使用Facade模式。
在維護(hù)一個(gè)遺留的大型系統(tǒng)時(shí),可能這個(gè)系統(tǒng)已經(jīng)變得非常難以維護(hù)和擴(kuò)展,此時(shí)可以考慮為新系統(tǒng)開(kāi)發(fā)一個(gè)Facade類,來(lái)提供遺留系統(tǒng)的比較清晰簡(jiǎn)單的接口,讓新系統(tǒng)與Facade類交互,提高復(fù)用性。
不能過(guò)多的或者不合理的使用外觀模式,使用外觀模式好,還是直接調(diào)用模塊好。要以讓系統(tǒng)有層次,利于維護(hù)為目的。
到此,關(guān)于“Java設(shè)計(jì)模式中的外觀模式實(shí)例分析”的學(xué)習(xí)就結(jié)束了,希望能夠解決大家的疑惑。理論與實(shí)踐的搭配能更好的幫助大家學(xué)習(xí),快去試試吧!若想繼續(xù)學(xué)習(xí)更多相關(guān)知識(shí),請(qǐng)繼續(xù)關(guān)注億速云網(wǎng)站,小編會(huì)繼續(xù)努力為大家?guī)?lái)更多實(shí)用的文章!
免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如果涉及侵權(quán)請(qǐng)聯(lián)系站長(zhǎng)郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。