真实的国产乱ⅩXXX66竹夫人,五月香六月婷婷激情综合,亚洲日本VA一区二区三区,亚洲精品一区二区三区麻豆

成都創(chuàng)新互聯(lián)網(wǎng)站制作重慶分公司

Java中實(shí)現(xiàn)單例模式的法有哪些-創(chuàng)新互聯(lián)

這篇文章將為大家詳細(xì)講解有關(guān)Java中實(shí)現(xiàn)單例模式的法有哪些,文章內(nèi)容質(zhì)量較高,因此小編分享給大家做個(gè)參考,希望大家閱讀完這篇文章后對(duì)相關(guān)知識(shí)有一定的了解。

創(chuàng)新互聯(lián)主要從事成都網(wǎng)站制作、網(wǎng)站建設(shè)、外貿(mào)網(wǎng)站建設(shè)、網(wǎng)頁設(shè)計(jì)、企業(yè)做網(wǎng)站、公司建網(wǎng)站等業(yè)務(wù)。立足成都服務(wù)合浦,10年網(wǎng)站建設(shè)經(jīng)驗(yàn),價(jià)格優(yōu)惠、服務(wù)專業(yè),歡迎來電咨詢建站服務(wù):028-86922220

一、餓漢設(shè)計(jì)模式


public class SingletonHungry {
 private final static SingletonHungry INSTANCE = new SingletonHungry();

 private SingletonHungry() {
 }

 public static SingletonHungry getInstance() {
 return INSTANCE;
 }
}

因?yàn)閱卫龑?duì)象一開始就初始化了,不會(huì)出現(xiàn)線程安全的問題。

PS:因?yàn)槲覀冎恍枰跏蓟?次,所以給INSTANCE加了final關(guān)鍵字,表明初始化1次后不再允許初始化。

懶漢單例設(shè)計(jì)模式

二、簡(jiǎn)單懶漢設(shè)計(jì)模式

由于餓漢模式一開始就初始化好了,但如果一直沒有被使用到的話,是會(huì)浪費(fèi)珍貴的內(nèi)存資源的,所以引出了懶漢模式。

懶漢:首次使用時(shí)才會(huì)去實(shí)例化對(duì)象。

public class SingletonLazy1 {
 private static SingletonLazy1 instance;

 private SingletonLazy1() {
 }

 public static SingletonLazy1 getInstance() {
 if (instance == null) {
  instance = new SingletonLazy1();
 }
 return instance;
 }
}

測(cè)試:

public class Main {
 public static void main(String[] args) {
 SingletonLazy1 instance1 = SingletonLazy1.getInstance();
 SingletonLazy1 instance2 = SingletonLazy1.getInstance();
 System.out.println(instance1);
 System.out.println(instance2);
 }
}

測(cè)試結(jié)果:從結(jié)果可以看出,打印出來的兩個(gè)實(shí)例對(duì)象地址是一樣的,所以認(rèn)為是只創(chuàng)建了一個(gè)對(duì)象。

Java中實(shí)現(xiàn)單例模式的法有哪些

三、進(jìn)階

1:解決多線程并發(fā)問題

上述代碼存在的問題:在多線程環(huán)境下,不能保證只創(chuàng)建一個(gè)實(shí)例,我們進(jìn)行問題的重現(xiàn):

public class Main {
 public static void main(String[] args) {
 new Thread(()-> System.out.println(SingletonLazy1.getInstance())).start();
 new Thread(()-> System.out.println(SingletonLazy1.getInstance())).start();
 }
}

結(jié)果:獲取到的對(duì)象不一樣,這并不是我們的預(yù)期結(jié)果。

Java中實(shí)現(xiàn)單例模式的法有哪些

解決方案:

public class SingletonLazy2 {
 private static SingletonLazy2 instance;

 private SingletonLazy2() {
 }
 //在方法加synchronized修飾符
 public static synchronized SingletonLazy2 getInstance() {
 if (instance == null) {
  instance = new SingletonLazy2();
 }
 return instance;
 }
}

測(cè)試:

public class Main2 {
 public static void main(String[] args) {
 new Thread(()-> System.out.println(SingletonLazy2.getInstance())).start();
 new Thread(()-> System.out.println(SingletonLazy2.getInstance())).start();
 new Thread(()-> System.out.println(SingletonLazy2.getInstance())).start();
 new Thread(()-> System.out.println(SingletonLazy2.getInstance())).start();
 }
}

Java中實(shí)現(xiàn)單例模式的法有哪些

結(jié)果:多線程環(huán)境下獲取到的是同個(gè)對(duì)象。

四、進(jìn)階2:縮小方法鎖粒度

上一方案雖然解決了多線程問題,但由于synchronized關(guān)鍵字是加在方法上的,鎖粒度很大,當(dāng)有上萬甚至更多的線程同時(shí)訪問時(shí),都被攔在了方法外,大大降低了程序性能,所以我們要適當(dāng)縮小鎖粒度,控制鎖的范圍在代碼塊上。

public class SingletonLazy3 {
 private static SingletonLazy3 instance;

 private SingletonLazy3() {
 }
 
 public static SingletonLazy3 getInstance() {
 //代碼塊1:不要在if外加鎖,不然和鎖方法沒什么區(qū)別
 if (instance == null) {
  //代碼塊2:加鎖,將方法鎖改為鎖代碼塊
  synchronized (SingletonLazy3.class) {
  //代碼塊3
  instance = new SingletonLazy3();
  }
 }
 return instance;
 }
}

測(cè)試:

public class Main3 {
 public static void main(String[] args) {
 new Thread(()-> System.out.println(SingletonLazy3.getInstance())).start();
 new Thread(()-> System.out.println(SingletonLazy3.getInstance())).start();
 new Thread(()-> System.out.println(SingletonLazy3.getInstance())).start();
 new Thread(()-> System.out.println(SingletonLazy3.getInstance())).start();
 }
}

我們看一下運(yùn)行結(jié)果:還是出現(xiàn)了線程安全的問題(每次執(zhí)行都可能打印不同的地址情況,只要證明是非線程安全的即可)。

Java中實(shí)現(xiàn)單例模式的法有哪些

原因分析:當(dāng)線程A拿到鎖進(jìn)入到代碼塊3并且還沒有創(chuàng)建完實(shí)例時(shí),線程B是有機(jī)會(huì)到達(dá)代碼塊2的,此時(shí)線程C和D可能在代碼塊1,當(dāng)線程A執(zhí)行完之后釋放鎖并返回對(duì)象1,線程B進(jìn)入進(jìn)入代碼塊3,又創(chuàng)建了新的對(duì)象2覆蓋對(duì)象1并返回,最后當(dāng)線程C和D在進(jìn)行判null時(shí)發(fā)現(xiàn)instance非空,直接返回最后創(chuàng)建的對(duì)象2。

五、進(jìn)階3:雙重檢查鎖DCL(Double-Checked-Locking)

所謂雙重檢查鎖,就是在線程獲取到鎖之后再對(duì)實(shí)例進(jìn)行第2次判空檢查,判斷是不是有上一個(gè)線程已經(jīng)進(jìn)行了實(shí)例化,有的話直接返回即可,否則進(jìn)行實(shí)例初始化。

public class SingletonLazy4DCL {
 private static SingletonLazy4DCL instance;

 private SingletonLazy4DCL() {
 }

 public static SingletonLazy4DCL getInstance() {
 //代碼塊1:第一次判空檢查
 if (instance == null) {
  //代碼塊2:加鎖,將方法鎖改為鎖代碼塊
  synchronized (SingletonLazy3.class) {
  //代碼塊3:進(jìn)行第二次(雙重)判空檢查
  if (instance == null) {
   instance = new SingletonLazy4DCL();
  }
  }
 }
 return instance;
 }
}

測(cè)試:

public class Main4DCL {
 public static void main(String[] args) {
 new Thread(()-> System.out.println(SingletonLazy4DCL.getInstance())).start();
 new Thread(()-> System.out.println(SingletonLazy4DCL.getInstance())).start();
 new Thread(()-> System.out.println(SingletonLazy4DCL.getInstance())).start();
 new Thread(()-> System.out.println(SingletonLazy4DCL.getInstance())).start();
 }
}

Java中實(shí)現(xiàn)單例模式的法有哪些

六、進(jìn)階4:禁止指令重排

在對(duì)象的實(shí)例過程中,大概可分為以下3個(gè)步驟:

  1. 分配對(duì)象內(nèi)存空間

  2. 在空間中創(chuàng)建對(duì)象

  3. 實(shí)例指向分配到的內(nèi)存空間地址

由于實(shí)例化對(duì)象的過程不是原子性的,且JVM本身對(duì)Java代碼指令有重排的操作,可能1-2-3的操作被重新排序成了1-3-2,這樣就會(huì)導(dǎo)致在3執(zhí)行完之后還沒來得及創(chuàng)建對(duì)象時(shí),其他線程先讀取到了未初始化的對(duì)象instance并提前返回,在使用的時(shí)候會(huì)出現(xiàn)NPE空指針異常。

解決:給instance加volatile關(guān)鍵字表明禁止指令重排,出現(xiàn)的概率不大, 但這是更安全的一種做法。

public class SingletonLazy5Volatile {
 //加volatile關(guān)鍵字
 private volatile static SingletonLazy5Volatile instance;

 private SingletonLazy5Volatile() {
 }

 public static SingletonLazy5Volatile getInstance() {
 //代碼塊1
 if (instance == null) {
  //代碼塊2:加鎖,將方法鎖改為鎖代碼塊
  synchronized (SingletonLazy3.class) {
  //代碼塊3
  if (instance == null) {
   instance = new SingletonLazy5Volatile();
  }
  }
 }
 return instance;
 }
}

七、進(jìn)階5:靜態(tài)內(nèi)部類

我們還可以使用靜態(tài)類的靜態(tài)變量被第一次訪問時(shí)才會(huì)進(jìn)行初始化的特性來進(jìn)行懶加載初始化。把外部類的單例對(duì)象放到靜態(tài)內(nèi)部類的靜態(tài)成員變量里進(jìn)行初始化。

public class SingletonLazy6InnerStaticClass {
 private SingletonLazy6InnerStaticClass() {
 }

 public static SingletonLazy6InnerStaticClass getInstance() {
 return SingletonLazy6InnerStaticClass.InnerStaticClass.instance;
 //或者寫成return InnerStaticClass.instance;
 }

 private static class InnerStaticClass {
 private static final SingletonLazy6InnerStaticClass instance = new SingletonLazy6InnerStaticClass();
 }
}

雖然靜態(tài)內(nèi)部類里的寫法和餓漢模式很像,但它卻不是在外部類加載時(shí)就初始化了,而是在第一次被訪問到時(shí)才會(huì)進(jìn)行初始化的操作(即getInstance方法被調(diào)用時(shí)),也就起到了懶加載的效果,并且它可以保證線程安全。

測(cè)試:

public class Main6InnerStatic {
 public static void main(String[] args) {
 new Thread(()-> System.out.println(SingletonLazy6InnerStaticClass.getInstance())).start();
 new Thread(()-> System.out.println(SingletonLazy6InnerStaticClass.getInstance())).start();
 new Thread(()-> System.out.println(SingletonLazy6InnerStaticClass.getInstance())).start();
 new Thread(()-> System.out.println(SingletonLazy6InnerStaticClass.getInstance())).start();
 }
}

Java中實(shí)現(xiàn)單例模式的法有哪些

反射攻擊

雖然我們一開始都對(duì)構(gòu)造器進(jìn)行了私有化處理,但Java本身的反射機(jī)制卻還是可以將private訪問權(quán)限改為可訪問,依舊可以創(chuàng)建出新的實(shí)例對(duì)象,這里以餓漢模式舉例說明:

public class MainReflectAttack {
 public static void main(String[] args) {
 try {
  SingletonHungry normal1 = SingletonHungry.getInstance();
  SingletonHungry normal2 = SingletonHungry.getInstance();
  //開始反射創(chuàng)建實(shí)例
  Constructor reflect = SingletonHungry.class.getDeclaredConstructor(null);
  reflect.setAccessible(true);
  SingletonHungry attack = reflect.newInstance();
  
  System.out.println("正常靜態(tài)方法調(diào)用獲取到的對(duì)象:");
  System.out.println(normal1);
  System.out.println(normal2);
  System.out.println("反射獲取到的對(duì)象:");
  System.out.println(attack);
 } catch (Exception e) {
  e.printStackTrace();
 }
 }
}

Java中實(shí)現(xiàn)單例模式的法有哪些

八、枚舉單例(推薦使用)

public enum SingletonEnum {
 INSTANCE;
}

枚舉是最簡(jiǎn)潔、線程安全、不會(huì)被反射創(chuàng)建實(shí)例的單例實(shí)現(xiàn),《Effective Java》中也表明了這種寫法是很好的單例實(shí)現(xiàn)模式。

單元素的枚舉類型經(jīng)常成為實(shí)現(xiàn)Singleton的很好方法。 --《Effective Java》

為什么說不會(huì)被反射創(chuàng)建對(duì)象呢?查閱構(gòu)造器反射實(shí)例化對(duì)象方法newInstance的源碼可知:反射禁止了枚舉對(duì)象的實(shí)例化,也就防止了反射攻擊,不用自己在構(gòu)造器實(shí)現(xiàn)復(fù)雜的重復(fù)實(shí)例化邏輯了。

Java中實(shí)現(xiàn)單例模式的法有哪些

測(cè)試:

public class MainEnum {
 public static void main(String[] args) {
 SingletonEnum instance1 = SingletonEnum.INSTANCE;
 SingletonEnum instance2 = SingletonEnum.INSTANCE;
 System.out.println(instance1.hashCode());
 System.out.println(instance2.hashCode());
 }
}

Java中實(shí)現(xiàn)單例模式的法有哪些

總結(jié):幾種實(shí)現(xiàn)方式的優(yōu)缺點(diǎn) 懶漢模式

優(yōu)點(diǎn):節(jié)省內(nèi)存。

缺點(diǎn):存在線程安全問題,若要保證線程安全,則寫法復(fù)雜。

餓漢模式

優(yōu)點(diǎn):線程安全。

缺點(diǎn):如果單例對(duì)象一直沒被使用,則會(huì)浪費(fèi)內(nèi)存空間。

靜態(tài)內(nèi)部類

優(yōu)點(diǎn):懶加載并避免了多線程問題,寫法相比于懶漢模式更簡(jiǎn)單。

缺點(diǎn):需要多創(chuàng)建一個(gè)內(nèi)部類。

枚舉

優(yōu)點(diǎn):簡(jiǎn)潔、天生線程安全、不可反射創(chuàng)建實(shí)例。

缺點(diǎn):暫無

關(guān)于Java中實(shí)現(xiàn)單例模式的法有哪些就分享到這里了,希望以上內(nèi)容可以對(duì)大家有一定的幫助,可以學(xué)到更多知識(shí)。如果覺得文章不錯(cuò),可以把它分享出去讓更多的人看到。


名稱欄目:Java中實(shí)現(xiàn)單例模式的法有哪些-創(chuàng)新互聯(lián)
網(wǎng)頁網(wǎng)址:http://weahome.cn/article/dhhhjh.html

其他資訊

在線咨詢

微信咨詢

電話咨詢

028-86922220(工作日)

18980820575(7×24)

提交需求

返回頂部