溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊(cè)×
其他方式登錄
點(diǎn)擊 登錄注冊(cè) 即表示同意《億速云用戶服務(wù)條款》

JDK中Collections的線程安全怎么實(shí)現(xiàn)

發(fā)布時(shí)間:2022-04-06 16:32:06 來(lái)源:億速云 閱讀:114 作者:iii 欄目:編程語(yǔ)言

這篇“JDK中Collections的線程安全怎么實(shí)現(xiàn)”文章的知識(shí)點(diǎn)大部分人都不太理解,所以小編給大家總結(jié)了以下內(nèi)容,內(nèi)容詳細(xì),步驟清晰,具有一定的借鑒價(jià)值,希望大家閱讀完這篇文章能有所收獲,下面我們一起來(lái)看看這篇“JDK中Collections的線程安全怎么實(shí)現(xiàn)”文章吧。

方法:

  1.   public static <T> Set<T> synchronizedSet(Set<T> s) {

  2.     return new SynchronizedSet<T>(s);

  3.     }

  1.  static class SynchronizedSet<E>

  2.       extends SynchronizedCollection<E>

  3.       implements Set<E> {

  4.     private static final long serialVersionUID = 487447009682186044L;


  5.     SynchronizedSet(Set<E> s) {

  6.             super(s);

  7.         }

  8.     SynchronizedSet(Set<E> s, Object mutex) {

  9.             super(s, mutex);

  10.         }


  11.     public boolean equals(Object o) {

  12.         synchronized(mutex) {return c.equals(o);}

  13.         }

  14.     public int hashCode() {

  15.         synchronized(mutex) {return c.hashCode();}

  16.         }

  17.     }


  1.     // use serialVersionUID from JDK 1.2.2 for interoperability

  2.     private static final long serialVersionUID = 3053995032091335093L;


  3.     final Collection<E> c;  // Backing Collection

  4.     final Object mutex;     // Object on which to synchronize


  5.     SynchronizedCollection(Collection<E> c) {

  6.             if (c==null)

  7.                 throw new NullPointerException();

  8.         this.c = c;

  9.             mutex = this;

  10.         }

  11.     SynchronizedCollection(Collection<E> c, Object mutex) {

  12.         this.c = c;

  13.             this.mutex = mutex;

  14.         }


  15.     public int size() {

  16.         synchronized(mutex) {return c.size();}

  17.         }

  18.     public boolean isEmpty() {

  19.         synchronized(mutex) {return c.isEmpty();}

  20.         }

  21.     public boolean contains(Object o) {

  22.         synchronized(mutex) {return c.contains(o);}

  23.         }

  24.     public Object[] toArray() {

  25.         synchronized(mutex) {return c.toArray();}

  26.         }

  27.     public <T> T[] toArray(T[] a) {

  28.         synchronized(mutex) {return c.toArray(a);}

  29.         }


  30.     public Iterator<E> iterator() {

  31.             return c.iterator(); // Must be manually synched by user!

  32.         }


  33.     public boolean add(E e) {

  34.         synchronized(mutex) {return c.add(e);}

  35.         }

  36.     public boolean remove(Object o) {

  37.         synchronized(mutex) {return c.remove(o);}

  38.         }


  39.     public boolean containsAll(Collection<?> coll) {

  40.         synchronized(mutex) {return c.containsAll(coll);}

  41.         }

  42.     public boolean addAll(Collection<? extends E> coll) {

  43.         synchronized(mutex) {return c.addAll(coll);}

  44.         }

  45.     public boolean removeAll(Collection<?> coll) {

  46.         synchronized(mutex) {return c.removeAll(coll);}

  47.         }

  48.     public boolean retainAll(Collection<?> coll) {

  49.         synchronized(mutex) {return c.retainAll(coll);}

  50.         }

  51.     public void clear() {

  52.         synchronized(mutex) {c.clear();}

  53.         }

  54.     public String toString() {

  55.         synchronized(mutex) {return c.toString();}

  56.         }

  57.         private void writeObject(ObjectOutputStream s) throws IOException {

  58.         synchronized(mutex) {s.defaultWriteObject();}

  59.         }

  60.     }

List和Map方法同理,這樣,我們利用了裝實(shí)模式,給我們的Map和List穿上了交通協(xié)管員的制服,減少了類爆炸,這就是裝實(shí)模式;

  1. package org;


  2. public class AImp implements IA {


  3.     public synchronized void say() {

  4.         ;

  5.     }


  6. }


  1. package org;


  2. public interface IA {

  3.  public void say();

  4. }


sychronized標(biāo)識(shí)符是不影響接口的實(shí)現(xiàn)和繼承的

以上就是關(guān)于“JDK中Collections的線程安全怎么實(shí)現(xiàn)”這篇文章的內(nèi)容,相信大家都有了一定的了解,希望小編分享的內(nèi)容對(duì)大家有幫助,若想了解更多相關(guān)的知識(shí)內(nèi)容,請(qǐng)關(guān)注億速云行業(yè)資訊頻道。

向AI問(wèn)一下細(xì)節(jié)

免責(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)容。

AI