av一区二区在线观看_亚洲男人的天堂网站_日韩亚洲视频_在线成人免费_欧美日韩精品免费观看视频_久草视

您的位置:首頁(yè)技術(shù)文章
文章詳情頁(yè)

淺談JAVA設(shè)計(jì)模式之享元模式

瀏覽:4日期:2022-08-30 11:04:39

享元模式(Flyweight Pattern)主要用于減少創(chuàng)建對(duì)象的數(shù)量,以減少內(nèi)存占用和提高性能。這種類型的設(shè)計(jì)模式屬于結(jié)構(gòu)型模式,它提供了減少對(duì)象數(shù)量從而改善應(yīng)用所需的對(duì)象結(jié)構(gòu)的方式。

享元模式嘗試重用現(xiàn)有的同類對(duì)象,如果未找到匹配的對(duì)象,則創(chuàng)建新對(duì)象。我們將通過(guò)創(chuàng)建 5 個(gè)對(duì)象來(lái)畫出 20 個(gè)分布于不同位置的圓來(lái)演示這種模式。由于只有 5 種可用的顏色,所以 color 屬性被用來(lái)檢查現(xiàn)有的 Circle 對(duì)象。

介紹

意圖:

運(yùn)用共享技術(shù)有效地支持大量細(xì)粒度的對(duì)象。

主要解決:

在有大量對(duì)象時(shí),有可能會(huì)造成內(nèi)存溢出,我們把其中共同的部分抽象出來(lái),如果有相同的業(yè)務(wù)請(qǐng)求,直接返回在內(nèi)存中已有的對(duì)象,避免重新創(chuàng)建。

何時(shí)使用:

1、系統(tǒng)中有大量對(duì)象。

2、這些對(duì)象消耗大量?jī)?nèi)存。

3、這些對(duì)象的狀態(tài)大部分可以外部化。

4、這些對(duì)象可以按照內(nèi)蘊(yùn)狀態(tài)分為很多組,當(dāng)把外蘊(yùn)對(duì)象從對(duì)象中剔除出來(lái)時(shí),每一組對(duì)象都可以用一個(gè)對(duì)象來(lái)代替。

5、系統(tǒng)不依賴于這些對(duì)象身份,這些對(duì)象是不可分辨的。

如何解決:

用唯一標(biāo)識(shí)碼判斷,如果在內(nèi)存中有,則返回這個(gè)唯一標(biāo)識(shí)碼所標(biāo)識(shí)的對(duì)象。

關(guān)鍵代碼:

用 HashMap 存儲(chǔ)這些對(duì)象。

應(yīng)用實(shí)例:

1、JAVA 中的 String,如果有則返回,如果沒有則創(chuàng)建一個(gè)字符串保存在字符串緩存池里面。

2、數(shù)據(jù)庫(kù)的數(shù)據(jù)池。

優(yōu)點(diǎn):

大大減少對(duì)象的創(chuàng)建,降低系統(tǒng)的內(nèi)存,使效率提高。

缺點(diǎn):

提高了系統(tǒng)的復(fù)雜度,需要分離出外部狀態(tài)和內(nèi)部狀態(tài),而且外部狀態(tài)具有固有化的性質(zhì),不應(yīng)該隨著內(nèi)部狀態(tài)的變化而變化,否則會(huì)造成系統(tǒng)的混亂。

使用場(chǎng)景:

1、系統(tǒng)有大量相似對(duì)象。

2、需要緩沖池的場(chǎng)景。

注意事項(xiàng):

1、注意劃分外部狀態(tài)和內(nèi)部狀態(tài),否則可能會(huì)引起線程安全問(wèn)題。

2、這些類必須有一個(gè)工廠對(duì)象加以控制。

實(shí)現(xiàn)

我們將創(chuàng)建一個(gè) Shape 接口和實(shí)現(xiàn)了 Shape 接口的實(shí)體類 Circle。下一步是定義工廠類 ShapeFactory。

ShapeFactory 有一個(gè) Circle 的 HashMap,其中鍵名為 Circle 對(duì)象的顏色。無(wú)論何時(shí)接收到請(qǐng)求,都會(huì)創(chuàng)建一個(gè)特定顏色的圓。ShapeFactory 檢查它的 HashMap 中的 circle 對(duì)象,如果找到 Circle 對(duì)象,則返回該對(duì)象,否則將創(chuàng)建一個(gè)存儲(chǔ)在 hashmap 中以備后續(xù)使用的新對(duì)象,并把該對(duì)象返回到客戶端。

FlyWeightPatternDemo,我們的演示類使用 ShapeFactory 來(lái)獲取 Shape 對(duì)象。它將向 ShapeFactory 傳遞信息(red / green / blue/ black / white),以便獲取它所需對(duì)象的顏色。

淺談JAVA設(shè)計(jì)模式之享元模式

步驟 1

創(chuàng)建一個(gè)接口。

public interface Shape { void draw();}

步驟 2

創(chuàng)建實(shí)現(xiàn)接口的實(shí)體類。

public class Circle implements Shape { private String color; private int x; private int y; private int radius; public Circle(String color){ this.color = color; } public void setX(int x) { this.x = x; } public void setY(int y) { this.y = y; } public void setRadius(int radius) { this.radius = radius; } @Override public void draw() { System.out.println('Circle: Draw() [Color : ' + color +', x : ' + x +', y :' + y +', radius :' + radius); }}

步驟 3

創(chuàng)建一個(gè)工廠,生成基于給定信息的實(shí)體類的對(duì)象。

import java.util.HashMap; public class ShapeFactory { private static final HashMap<String, Shape> circleMap = new HashMap<>(); public static Shape getCircle(String color) { Circle circle = (Circle)circleMap.get(color); if(circle == null) { circle = new Circle(color); circleMap.put(color, circle); System.out.println('Creating circle of color : ' + color); } return circle; }}

步驟 4

使用該工廠,通過(guò)傳遞顏色信息來(lái)獲取實(shí)體類的對(duì)象。

public class FlyweightPatternDemo { private static final String colors[] = { 'Red', 'Green', 'Blue', 'White', 'Black' }; public static void main(String[] args) { for(int i=0; i < 20; ++i) { Circle circle = (Circle)ShapeFactory.getCircle(getRandomColor()); circle.setX(getRandomX()); circle.setY(getRandomY()); circle.setRadius(100); circle.draw(); } } private static String getRandomColor() { return colors[(int)(Math.random()*colors.length)]; } private static int getRandomX() { return (int)(Math.random()*100 ); } private static int getRandomY() { return (int)(Math.random()*100); }}

步驟 5

執(zhí)行程序,輸出結(jié)果:

Creating circle of color : BlackCircle: Draw() [Color : Black, x : 36, y :71, radius :100Creating circle of color : GreenCircle: Draw() [Color : Green, x : 27, y :27, radius :100Creating circle of color : WhiteCircle: Draw() [Color : White, x : 64, y :10, radius :100Creating circle of color : RedCircle: Draw() [Color : Red, x : 15, y :44, radius :100Circle: Draw() [Color : Green, x : 19, y :10, radius :100Circle: Draw() [Color : Green, x : 94, y :32, radius :100Circle: Draw() [Color : White, x : 69, y :98, radius :100Creating circle of color : BlueCircle: Draw() [Color : Blue, x : 13, y :4, radius :100Circle: Draw() [Color : Green, x : 21, y :21, radius :100Circle: Draw() [Color : Blue, x : 55, y :86, radius :100Circle: Draw() [Color : White, x : 90, y :70, radius :100Circle: Draw() [Color : Green, x : 78, y :3, radius :100Circle: Draw() [Color : Green, x : 64, y :89, radius :100Circle: Draw() [Color : Blue, x : 3, y :91, radius :100Circle: Draw() [Color : Blue, x : 62, y :82, radius :100Circle: Draw() [Color : Green, x : 97, y :61, radius :100Circle: Draw() [Color : Green, x : 86, y :12, radius :100Circle: Draw() [Color : Green, x : 38, y :93, radius :100Circle: Draw() [Color : Red, x : 76, y :82, radius :100Circle: Draw() [Color : Blue, x : 95, y :82, radius :100

以上就是淺談JAVA設(shè)計(jì)模式之享元模式的詳細(xì)內(nèi)容,更多關(guān)于JAVA 享元模式的資料請(qǐng)關(guān)注好吧啦網(wǎng)其它相關(guān)文章!

標(biāo)簽: Java
相關(guān)文章:
主站蜘蛛池模板: 黄色激情视频在线观看 | 黄色片一级 | 色综合五月天 | 国产精品一区二区三区在线 | 一级特黄视频 | 精品一区av | www.青青草 | 综合激情网| 成人免费视频视频 | 91一级片| 国产v片| 欧美精品久久久久 | 久久免费精品视频 | 国产精品hd | 亚洲黄色大片 | 国产精品高潮呻吟久久 | 深夜福利av | 色婷婷影院 | 免费a在线| 精品国产一区二区三 | 亚洲精品视频免费 | 成人免费毛片嘿嘿连载视频 | 99久久视频 | 国产一级生活片 | 国产中文在线 | 黄色片91| 久久久久久久 | 性色av一区二区 | 午夜精品影院 | 欧美成人极品 | 午夜你懂的 | 国产一区二区在线观看视频 | 日韩av网站在线观看 | 伊人久久网站 | 午夜999| 张津瑜国内精品www在线 | 欧美激情亚洲 | va视频| 美女视频福利 | 五月激情综合网 | 国产黄色一区 |