📜  C#中的Queue.Equals()方法

📅  最后修改于: 2021-05-29 20:02:19             🧑  作者: Mango

从Object类继承的Equals(Object)方法用于检查指定的Queue类对象是否等于另一个Queue类对象。此方法位于System.Collections命名空间下。

句法:

public virtual bool Equals (object obj);

此处, obj是要与当前对象进行比较的对象。

返回值:如果指定对象等于当前对象,则此方法返回true,否则返回false。

下面的程序说明了上述方法的用法:

范例1:

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

范例2:

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