zoukankan      html  css  js  c++  java
  • ArrayList and thread safe

    ArrayList.Synchronized Method

    Returns a list wrapper that is synchronized (thread safe).

    The following code example shows how to lock the collection using the SyncRoot during the entire enumeration.

    C#
    ArrayList myCollection = new ArrayList();
    
    lock(myCollection.SyncRoot)
    {
        foreach (object item in myCollection)
        {
            // Insert your code here.
        }
    }
    

    This method is an O(1) operation.

    The following code example shows how to synchronize an ArrayList, determine if an ArrayList is synchronized and use a synchronized ArrayList.

    C#
    using System;
    using System.Collections;
    public class SamplesArrayList  {
    
       public static void Main()  {
    
          // Creates and initializes a new ArrayList.
          ArrayList myAL = new ArrayList();
          myAL.Add( "The" );
          myAL.Add( "quick" );
          myAL.Add( "brown" );
          myAL.Add( "fox" );
    
          // Creates a synchronized wrapper around the ArrayList.
          ArrayList mySyncdAL = ArrayList.Synchronized( myAL );
    
          // Displays the sychronization status of both ArrayLists.
          Console.WriteLine( "myAL is {0}.", myAL.IsSynchronized ? "synchronized" : "not synchronized" );
          Console.WriteLine( "mySyncdAL is {0}.", mySyncdAL.IsSynchronized ? "synchronized" : "not synchronized" );
       }
    }
    /*
    This code produces the following output.
    
    myAL is not synchronized.
    mySyncdAL is synchronized.
    */
    

    Remarks

    To guarantee the thread safety of the ArrayList, all operations must be done through this wrapper.

    Enumerating through a collection is intrinsically not a thread-safe procedure. Even when a collection is synchronized, other threads can still modify the collection, which causes the enumerator to throw an exception. To guarantee thread safety during enumeration, you can either lock the collection during the entire enumeration or catch the exceptions resulting from changes made by other threads.

  • 相关阅读:
    使用mail架包发送邮件javax.mail.AuthenticationFailedException: failed to connect at javax.mail.Service.connec
    java容器 Map Set List
    COJ 1686:记忆化搜索
    POJ 3694:桥
    COJ 1685:贪心+set
    COJ 1687:Set
    COJ 1684:线段树
    POJ 3693:RMQ+后缀数组
    URAL 1297:后缀数组求最长回文串
    POJ 1743:后缀数组
  • 原文地址:https://www.cnblogs.com/chucklu/p/12867993.html
Copyright © 2011-2022 走看看