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


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


等於(對象)方法從Object類繼承的XML用於檢查指定的Stack類對象是否等於另一個Stack類對象。此方法屬於System.Collections命名空間。

用法:

public virtual bool Equals (object obj);

在此,obj是要與當前對象進行比較的對象。


返回值:如果指定對象等於當前對象,則此方法返回true,否則返回false。

以下示例程序旨在說明上述方法的用法:

示例1:

// C# code to check if two Stack 
// class objects are equal or not 
using System; 
using System.Collections; 
  
class GFG { 
  
    // Driver code 
    public static void Main() 
    { 
  
        // Creating a Stack named st1 
        Stack st1 = new Stack(); 
  
        // Adding elements to st1 
        st1.Push(1); 
        st1.Push(2); 
        st1.Push(3); 
        st1.Push(4); 
  
        // Checking whether st1 is 
        // equal to itself or not 
        Console.WriteLine(st1.Equals(st1)); 
    } 
}
輸出:
True

示例2:

// C# code to check if two Stack 
// class objects are equal or not 
using System; 
using System.Collections; 
  
class GFG { 
  
    // Driver code 
    public static void Main() 
    { 
  
        // Creating a Stack named st1 
        Stack st1 = new Stack(); 
  
        // Adding elements to the Stack 
        st1.Push("C"); 
        st1.Push("C++"); 
        st1.Push("Java"); 
        st1.Push("C#"); 
  
        // Creating a Stack named st2 
        Stack st2 = new Stack(); 
  
        st2.Push("HTML"); 
        st2.Push("CSS"); 
        st2.Push("PHP"); 
        st2.Push("SQL"); 
  
        // Checking whether st1 is 
        // equal to st2 or not 
        Console.WriteLine(st1.Equals(st2)); 
  
        // Creating a new Stack 
        Stack st3 = new Stack(); 
  
        // Assigning st2 to st3 
        st3 = st2; 
  
        // Checking whether st3 is 
        // equal to st2 or not 
        Console.WriteLine(st3.Equals(st2)); 
    } 
}
輸出:
False
True


相關用法


注:本文由純淨天空篩選整理自Kirti_Mangal大神的英文原創作品 Stack.Equals() Method in C#。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。