📜  如何在C#中获得对StringCollection的同步访问

📅  最后修改于: 2021-05-29 23:50:56             🧑  作者: Mango

StringCollection.SyncRoot属性用于获取一个对象,该对象可用于同步对StringCollection的访问。表示字符串集合的此类库。 StringCollection类在System.Collections.Specialized命名空间中定义。

重要事项:

  • 完成对象的同步,以便只有一个线程可以操纵StringCollection中的数据。
  • 属性是提供读取,写入和计算私有数据字段的手段的类的成员。
  • 同步代码不能直接在集合上执行,因此它必须在集合的SyncRoot上执行操作,以保证从其他对象派生的集合的正确操作。
  • 检索此属性的值是O(1)操作。

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

示例1:在此代码中,我们使用SyncRoot获取对名为st的StringCollection的同步访问,这不是线程安全的过程,并且可能导致异常。因此,为避免异常,我们在枚举期间锁定了集合。

// C# program to illustrate the
// use of SyncRoot property of
// the StringCollection class
using System;
using System.Threading;
using System.Collections;
using System.Collections.Specialized;
  
namespace sync_root {
  
class GFG {
  
    // Main Method
    static void Main(string[] args)
    {
  
        // Declaring an StringCollection
        StringCollection st = new StringCollection();
  
        // Adding elements to StringCollection
        st.Add("C");
        st.Add("C++");
        st.Add("Java");
        st.Add("C#");
        st.Add("HTML");
  
        // Using the SyncRoot property
        lock(st.SyncRoot)
        {
            foreach(object ob in st)
            {
                Console.WriteLine(ob);
            }
        }
    }
}
}
输出:
C
C++
Java
C#
HTML

范例2:

// C# program to illustrate the
// use of SyncRoot property of
// the StringCollection class
using System;
using System.Threading;
using System.Collections;
using System.Collections.Specialized;
  
namespace sync_root {
  
class GFG {
  
    // Main Method
    static void Main(string[] args)
    {
  
        // Declaring an StringCollection
        StringCollection st = new StringCollection();
  
        // Adding elements to StringCollection
        st.Add("Geeks");
        st.Add("Classes");
        st.Add("on");
        st.Add("Data Structure");
        st.Add("Noida");
  
        // Using the SyncRoot property
        lock(st.SyncRoot)
        {
            foreach(object ob in st)
            {
                Console.WriteLine(ob);
            }
        }
    }
}
}
输出:
Geeks
Classes
on
Data Structure
Noida

参考:

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