📜  C#|检查ArrayList是否已同步(线程安全)

📅  最后修改于: 2021-05-29 16:07:18             🧑  作者: Mango

ArrayList.IsSynchronized属性用于获取一个值,该值指示是否同步对ArrayList的访问(线程安全)。

句法:

public virtual bool IsSynchronized { get; }

返回值:如果同步访问ArrayList(线程安全),则此属性返回true ,否则返回false 。默认值为false

下面的程序说明了上面讨论的属性的用法:

范例1:

// C# code to check if ArrayList
// Is Synchronized or not
using System;
using System.Collections;
  
class GFG {
  
    // Driver code
    public static void Main()
    {
  
        // Creating an ArrayList
        ArrayList myList = new ArrayList();
  
        // Adding elements to ArrayList
        myList.Add("A");
        myList.Add("B");
        myList.Add("C");
        myList.Add("D");
        myList.Add("E");
        myList.Add("F");
  
        // Creates a synchronized
        // wrapper around the ArrayList
        ArrayList smyList = ArrayList.Synchronized(myList);
  
        // Displays the synchronization
        // status of both ArrayList
        Console.WriteLine("myList is {0}.", myList.IsSynchronized ?
                               "Synchronized" : "Not Synchronized");
  
        Console.WriteLine("smyList is {0}.", smyList.IsSynchronized ? 
                                "Synchronized" : "Not Synchronized");
    }
}
输出:
myList is Not Synchronized.
smyList is Synchronized.

范例2:

// C# code to check if ArrayList
// Is Synchronized or not
using System;
using System.Collections;
  
class GFG {
  
    // Driver code
    public static void Main()
    {
  
        // Creating an ArrayList
        ArrayList myList = new ArrayList();
  
        // Adding elements to ArrayList
        myList.Add(1);
        myList.Add(2);
        myList.Add(3);
        myList.Add(4);
        myList.Add(5);
        myList.Add(5);
  
        // the default is false for 
        // IsSynchronized property
        Console.WriteLine(myList.IsSynchronized);
    }
}
输出:
False

笔记:

  • 检索此属性的值是O(1)操作。
  • 为了保证ArrayList的线程安全,所有操作必须通过Synchronized方法返回的包装器完成。
  • 通过集合进行枚举本质上不是线程安全的过程。即使同步了一个集合,其他线程仍然可以修改该集合,这将导致枚举器引发异常。

参考:

  • https://docs.microsoft.com/zh-cn/dotnet/api/system.collections.arraylist.issynchronized?view=netframework-4.7.2