El método Equals(Object) que se hereda de la clase Object se utiliza para comprobar si un objeto SortedSet<T> especificado es igual a otro objeto SortedSet<T> o no.
Sintaxis:
public virtual bool Equals (object obj);
Aquí, obj es el objeto que se comparará con el objeto actual.
Valor devuelto: este método devuelve verdadero si el objeto especificado es igual al objeto actual; de lo contrario, devuelve falso .
Los siguientes programas ilustran el uso del método mencionado anteriormente:
Ejemplo 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<string> mySet = new SortedSet<string>(); // 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)); } }
Producción:
True
Ejemplo 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<string> mySet1 = new SortedSet<string>(); // Inserting elements in SortedSet mySet1.Add("GeeksforGeeks"); mySet1.Add("Noida"); mySet1.Add("Data Structure"); mySet1.Add("Noida"); // Creating a SortedSet of integers SortedSet<int> mySet2 = new SortedSet<int>(); // 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<int> mySet3 = new SortedSet<int>(); // Assigning mySet2 to mySet3 mySet3 = mySet2; // Checking whether mySet3 is // equal to mySet2 or not Console.WriteLine(mySet3.Equals(mySet2)); } }
Producción:
False True
Nota: si la instancia actual es un tipo de referencia, el método Equals(Object) comprueba la igualdad de referencia.
Publicación traducida automáticamente
Artículo escrito por Kirti_Mangal y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA