Método Int32.Equals en C# con ejemplos

El método Int32.Equals() se usa para obtener un valor que indica si la instancia actual es igual a un objeto específico o Int32 o no. Hay dos métodos en la lista de sobrecarga de este método de la siguiente manera:

  • Método Igual a (Int32)
  • Método Igual a (Objeto)

Int32.Equals(Int32)

Este método se usa para devolver un valor que indica si la instancia actual es igual a un valor Int32 especificado o no.

Sintaxis: public bool Equals (int obj);
Aquí, se necesita un valor Int32 para comparar con esta instancia.

Valor de retorno: este método devuelve verdadero si obj tiene el mismo valor que esta instancia; de lo contrario, es falso.

Los siguientes programas ilustran el uso del método Int32.Equals(Int32) :

Ejemplo 1:

// C# program to demonstrate the
// Int32.Equals(Int32) Method
using System;
using System.Globalization;
  
class GFG {
  
    // Main Method
    public static void Main()
    {
        // Declaring and initializing value1
        int value1 = 4562;
  
        // Declaring and initializing value2
        int value2 = 2563;
  
        // using Equals(Int32) method
        bool status = value1.Equals(value2);
  
        // checking the status
        if (status)
            Console.WriteLine("{0} is equal to {1}",
                                    value1, value2);
        else
            Console.WriteLine("{0} is not equal to {1}",
                                        value1, value2);
    }
}
Producción:

4562 is not equal to 2563

Ejemplo 2:

// C# program to demonstrate the
// Int32.Equals(Int32) Method
using System;
using System.Globalization;
  
class GFG {
  
    // Main Method
    public static void Main()
    {
  
        // calling get() method
        get(455, 578);
        get(445, 445);
        get(10, 20);
        get(Int32.MaxValue, Int32.MinValue);
    }
  
    // defining get() method
    public static void get(int value1, int value2)
    {
  
        // using Equals(Int32) method
        bool status = value1.Equals(value2);
  
        // checking the status
        if (status)
            Console.WriteLine("{0} is equal to {1}",
                                    value1, value2);
        else
            Console.WriteLine("{0} is not equal to {1}",
                                        value1, value2);
    }
}
Producción:

455 is not equal to 578
445 is equal to 445
10 is not equal to 20
2147483647 is not equal to -2147483648

Método Int32.Equals(Objeto)

Este método se utiliza para devolver un valor que indica si la instancia actual es igual a un objeto especificado o no.

Sintaxis: public override bool Equals (object obj);
Aquí, se necesita un objeto para comparar con esta instancia.

Valor devuelto: este método devuelve verdadero si obj es una instancia de Int32 y es igual al valor de esta instancia de lo contrario, falso.

Los siguientes programas ilustran el uso del método mencionado anteriormente:

Ejemplo 1:

// C# program to demonstrate the
// Int32.Equals(Object) Method
using System;
using System.Globalization;
  
class GFG {
  
    // Main Method
    public static void Main()
    {
        // Declaring and initializing value1
        int value1 = 10;
  
        // Declaring and initializing value2
        object value2 = 1 / 45;
  
        // using Equals(object) method
        bool status = value1.Equals(value2);
  
        // checking the status
        if (status)
            Console.WriteLine("{0} is equal to {1}",
                                    value1, value2);
        else
            Console.WriteLine("{0} is not equal to {1}",
                                        value1, value2);
    }
}
Producción:

10 is not equal to 0

Ejemplo 2:

// C# program to demonstrate the
// Int32.Equals(Object) Method
using System;
using System.Globalization;
  
class GFG {
  
    // Main Method
    public static void Main()
    {
        // calling get() method
        get(547, 585);
        get(555, 489);
        get(100, 100);
        get(745, 725);
    }
  
    // defining get() method
    public static void get(int value1, 
                        object value2)
    {
  
        // compare both Int32 value
        // using Equals(object) method
        bool status = value1.Equals(value2);
  
        // checking the status
        if (status)
            Console.WriteLine("{0} is equal to {1}",
                                    value1, value2);
        else
            Console.WriteLine("{0} is not equal to {1}",
                                        value1, value2);
    }
}
Producción:

547 is not equal to 585
555 is not equal to 489
100 is equal to 100
745 is not equal to 725

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

Deja una respuesta

Tu dirección de correo electrónico no será publicada. Los campos obligatorios están marcados con *