Stack.SyncRoot属性用于获取一个对象,该对象可用于同步对Stack的访问。堆栈表示对象的后进先出集合。当您需要对项目进行后进先出访问时,可以使用它。在列表中添加项目时,称为推送项目,而在删除项目时,则称为弹出项目。此类位于System.Collections
命名空间下。
Syntax: public virtual object SyncRoot { get; }
Property Value: An object which can be used to synchronize access to the Stack.
重要事项:
- 完成对象的同步,以便只有一个线程可以操纵堆栈中的数据。
- 属性是提供读取,写入和计算私有数据字段的手段的类的成员。
- 同步代码不能直接在集合上执行,因此它必须在集合的SyncRoot上执行操作,以保证从其他对象派生的集合的正确操作。
- 检索此属性的值是O(1)操作。
下面的程序说明了上面讨论的属性的用法:
示例1:在此代码中,我们使用SyncRoot获取对名为st的Stack的同步访问,这不是线程安全的过程,并且可能导致异常。因此,为避免异常,我们在枚举期间锁定了集合。
// C# program to illustrate the
// use of SyncRoot property of
// the Stack
using System;
using System.Threading;
using System.Collections;
namespace sync_root {
class GFG {
// Main Method
static void Main(string[] args)
{
// Declaring an Stack
Stack st = new Stack();
// Adding elements to Stack
st.Push(1);
st.Push(2);
st.Push(3);
st.Push(4);
st.Push(5);
// Using the SyncRoot property
lock(st.SyncRoot)
{
// foreach loop to display
// the elements in st
foreach(Object i in st)
Console.WriteLine(i);
}
}
}
}
输出:
5
4
3
2
1
范例2:
// C# program to illustrate the
// use of SyncRoot property of
// the Stack
using System;
using System.Threading;
using System.Collections;
namespace sync_root {
class GFG {
// Main Method
static void Main(string[] args)
{
// Declaring an Stack
Stack st = new Stack();
// Adding elements to Stack
st.Push("C");
st.Push("C++");
st.Push("Java");
st.Push("C#");
st.Push("HTML");
// Using the SyncRoot property
lock(st.SyncRoot)
{
// foreach loop to display
// the elements in st
foreach(Object i in st)
Console.WriteLine(i);
}
}
}
}
输出:
HTML
C#
Java
C++
C
参考:
- https://docs.microsoft.com/zh-cn/dotnet/api/system.collections.stack.syncroot?view=netframework-4.7.2