📜  C#|检查是否有两个SortedSet<T>对象相等

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

从Object类继承的Equals(Object)方法用于检查指定的SortedSet 对象是否等于另一个SortedSet 对象。

句法:

public virtual bool Equals (object obj);

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

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

下面的程序说明了上面讨论的方法的使用:

范例1:

// C# program to if a SortedSet object
// is equal to another SortedSet object
using System;
using System.Collections.Generic;
  
class Geeks {
  
    // Main Method
    public static void Main(String[] args)
    {
  
        // Creating a SortedSet of strings
        SortedSet mySet = new SortedSet();
  
        // Inserting elements in SortedSet
        mySet.Add("DS");
        mySet.Add("C++");
        mySet.Add("Java");
        mySet.Add("JavaScript");
  
        // Checking whether mySet is
        // equal to itself or not
        Console.WriteLine(mySet.Equals(mySet));
    }
}
输出:
True

范例2:

// C# program to if a SortedSet object
// is equal to another SortedSet object
using System;
using System.Collections.Generic;
  
class Geeks {
  
    // Main Method
    public static void Main(String[] args)
    {
  
        // Creating a SortedSet of strings
        SortedSet mySet1 = new SortedSet();
  
        // Inserting elements in SortedSet
        mySet1.Add("GeeksforGeeks");
        mySet1.Add("Noida");
        mySet1.Add("Data Structure");
        mySet1.Add("Noida");
  
        // Creating a SortedSet of integers
        SortedSet mySet2 = new SortedSet();
  
        // Inserting elements in SortedSet
        for (int i = 0; i < 5; i++) {
            mySet2.Add(i * 2);
        }
  
        // Checking whether mySet1 is
        // equal to mySet2 or not
        Console.WriteLine(mySet1.Equals(mySet2));
  
        // Creating a SortedSet of integers
        SortedSet mySet3 = new SortedSet();
  
        // Assigning mySet2 to mySet3
        mySet3 = mySet2;
  
        // Checking whether mySet3 is
        // equal to mySet2 or not
        Console.WriteLine(mySet3.Equals(mySet2));
    }
}
输出:
False
True

注意:如果当前实例是引用类型,则Equals(Object)方法将检查引用是否相等。