此方法(位于System.Collections命名空间下)用于检查存在的指定元素是否为Stack。在内部,此方法通过调用Object.Equals方法检查是否相等。另外,它执行线性搜索,因此,此方法是O(n)运算,其中n是Count。
用法:
public virtual bool Contains (object obj);
在这里,obj是要在堆栈中定位的对象。该值可以为空。
返回值:如果在堆栈中找到obj,则返回true,否则返回false。
以下示例程序旨在说明上述方法的使用:
示例1:
// C# code to illustrate the
// Stack.Contains() 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");
// Checking whether the element is
// present in the Stack or not
// The function returns True if the
// element is present in the Stack,
// else returns False
Console.WriteLine(myStack.Contains("GeeksforGeeks"));
}
}
输出:
True
示例2:
// C# code to illustrate the
// Stack.Contains() 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(5);
myStack.Push(10);
myStack.Push(15);
myStack.Push(20);
myStack.Push(25);
// Checking whether the element is
// present in the Stack or not
// The function returns True if the
// element is present in the Stack, else
// returns False
Console.WriteLine(myStack.Contains(7));
}
}
输出:
False
参考:
相关用法
注:本文由纯净天空筛选整理自Kirti_Mangal大神的英文原创作品 Stack.Contains() Method in C#。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。