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

📅  最后修改于: 2021-05-29 14:06:32             🧑  作者: Mango

StringDictionary.SyncRoot属性用于获取一个对象,该对象可用于同步对StringDictionary的访问。它仅允许字符串键和字符串值。它遭受性能问题的困扰。它使用键和强类型化为字符串而不是对象的值实现哈希表。

重要事项:

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

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

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

// C# program to illustrate the
// use of SyncRoot property of
// the StringDictionary 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 StringDictionary
        StringDictionary sd = new StringDictionary();
  
        // Adding elements to StringDictionary
        sd.Add("Australia", "Canberra"); 
        sd.Add("Belgium", "Brussels"); 
        sd.Add("Netherlands", "Amsterdam"); 
        sd.Add("China", "Beijing"); 
        sd.Add("Russia", "Moscow"); 
        sd.Add("India", "New Delhi"); 
  
        // Using the SyncRoot property
        lock(sd.SyncRoot)
        {
            // foreach loop to display
            // the elements in sd
            foreach(DictionaryEntry i in sd) 
                Console.WriteLine(i.Key + " ---- " + i.Value);
        }
    }
}
}
输出:
china ---- Beijing
netherlands ---- Amsterdam
belgium ---- Brussels
australia ---- Canberra
india ---- New Delhi
russia ---- Moscow

范例2:

// C# program to illustrate the
// use of SyncRoot property of
// the StringDictionary 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 StringDictionary
        StringDictionary sd = new StringDictionary();
  
        // Adding elements to StringDictionary
        sd.Add("1", "C"); 
        sd.Add("2", "C++"); 
        sd.Add("3", "Java"); 
        sd.Add("4", "C#"); 
        sd.Add("5", "HTML"); 
  
        // Using the SyncRoot property
        lock(sd.SyncRoot)
        {
            // foreach loop to display
            // the elements in sd
            foreach(DictionaryEntry i in sd) 
                Console.WriteLine(i.Key + " ----> " + i.Value);
        }
    }
}
}
输出:
3 ----> Java
5 ----> HTML
4 ----> C#
2 ----> C++
1 ----> C

参考:

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