當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


C# Stack.Contains()用法及代碼示例


此方法(位於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#。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。