ListDictionary.SyncRoot 属性
定义
获取可用于同步对 ListDictionary 的访问的对象。Gets an object that can be used to synchronize access to the ListDictionary.
public:
property System::Object ^ SyncRoot { System::Object ^ get(); };
public object SyncRoot { get; }
member this.SyncRoot : obj
Public ReadOnly Property SyncRoot As Object
属性值
用于同步对 ListDictionary 的访问的对象。An object that can be used to synchronize access to the ListDictionary.
实现
示例
下面的代码示例演示如何使用在 SyncRoot 整个枚举过程中锁定集合。The following code example shows how to lock the collection using the SyncRoot during the entire enumeration.
ListDictionary^ myCollection = gcnew ListDictionary();
bool lockTaken = false;
try
{
Monitor::Enter(myCollection->SyncRoot, lockTaken);
for each (Object^ item in myCollection)
{
// Insert your code here.
}
}
finally
{
if (lockTaken)
{
Monitor::Exit(myCollection->SyncRoot);
}
}
ListDictionary myCollection = new ListDictionary();
lock(myCollection.SyncRoot)
{
foreach (object item in myCollection)
{
// Insert your code here.
}
}
Dim myCollection As New ListDictionary()
SyncLock myCollection.SyncRoot
For Each item as Object In myCollection
' Insert your code here.
Next item
End SyncLock
检索此属性的值的运算复杂度为 O(1)。Retrieving the value of this property is an O(1) operation.
注解
派生类可以使用属性提供自己的同步版本 ListDictionary SyncRoot 。Derived classes can provide their own synchronized version of the ListDictionary using the SyncRoot property. 同步代码必须对的执行操作 SyncRoot ListDictionary ,而不是直接在上执行操作 ListDictionary 。The synchronizing code must perform operations on the SyncRoot of the ListDictionary, not directly on the ListDictionary. 这样可确保对从其他对象派生的集合正确地执行操作。This ensures proper operation of collections that are derived from other objects. 具体而言,它与可能同时修改对象的其他线程保持正确的同步 ListDictionary 。Specifically, it maintains proper synchronization with other threads that might be simultaneously modifying the ListDictionary object.
枚举整个集合本质上不是一个线程安全的过程。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.