此方法(位于System.Collections命名空间下)用于为Stack返回一个同步的(线程安全的)包装器。为了保证堆栈的线程安全,所有操作都必须通过此包装器完成。
用法:
public static System.Collections.Stack Synchronized (System.Collections.Stack stack);
返回值:它返回围绕堆栈的同步包装器。
异常:如果堆栈为null,则此方法将提供ArgumentNullException。
以下示例程序旨在说明上述方法的使用:
示例1:
// C# code to illustrate the
// Stack.Synchronized() Method
using System;
using System.Collections;
class GFG {
// Driver code
public static void Main()
{
// Creating a Stack
Stack myStack = new Stack();
// Inserting the elements into the Stack
myStack.Push("Geeks");
myStack.Push("Geeks Classes");
myStack.Push("Noida");
myStack.Push("Data Structures");
myStack.Push("GeeksforGeeks");
// Creates a synchronized
// wrapper around the Stack
Stack st = Stack.Synchronized(myStack);
// Displays the synchronization
// status of both Stack
Console.WriteLine("myStack is {0}.", myStack.IsSynchronized ?
"Synchronized" : "Not Synchronized");
Console.WriteLine("st is {0}.", st.IsSynchronized ?
"Synchronized" : "Not Synchronized");
}
}
输出:
myStack is Not Synchronized. st is Synchronized.
示例2:
// C# code to illustrate the
// Stack.Synchronized() Method
using System;
using System.Collections;
class GFG {
// Driver code
public static void Main()
{
// Creating a Stack
Stack myStack = new Stack();
// Inserting the elements into the Stack
myStack.Push("C");
myStack.Push("C++");
myStack.Push("Java");
myStack.Push("C#");
myStack.Push("Python");
// it will give error as
// the parameter is null
Stack sq = Stack.Synchronized(null);
}
}
运行时错误:
Unhandled Exception:
System.ArgumentNullException: Value cannot be null.
Parameter name: stack
参考:
相关用法
- C# Dictionary.Add()用法及代码示例
- C# Queue.Contains()用法及代码示例
- C# Math.Abs()函数用法及代码示例
- C# Stack.Contains()用法及代码示例
- C# Math.Exp()用法及代码示例
- C# Math.Abs()方法用法及代码示例
注:本文由纯净天空筛选整理自Kirti_Mangal大神的英文原创作品 Stack.Synchronized() Method in C#。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。