Método Int16.Equals en C# con ejemplos

El método Int16.Equals() se usa para obtener un valor que indica si la instancia actual es igual a un objeto especificado o Int16. Hay 2 métodos en la lista de sobrecarga de este método que son los siguientes:

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

Int16.Equals(Int16)

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

Sintaxis: public bool Equals (obj abreviado);
Aquí, se necesita un valor Int16 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 Int16.Equals(Int16) :

Ejemplo 1:

// C# program to demonstrate the
// Int16.Equals(Int16) Method
using System;
  
class GFG {
  
    // Main Method
    public static void Main()
    {
        // Declaring and initializing value1
        short value1 = 15;
  
        // Declaring and initializing value2
        short value2 = 17;
  
        // compare both Int16 value
        // using Equals(Int16) 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:

15 is not equal to 17

Ejemplo 2:

// C# program to demonstrate the
// Int16.Equals(Int16) Method
using System;
  
class GFG {
  
    // Main Method
    public static void Main()
    {
  
        // calling get() method
        get(5, 5);
        get(5, 4);
        get(10, 20);
        get(7, 7);
    }
  
    // defining get() method
    public static void get(short value1,
                           short value2)
    {
  
        // Compare both Int16 value
        // using Equals(Int16) 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:

5 is equal to 5
5 is not equal to 4
10 is not equal to 20
7 is equal to 7

Método Int16.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 Int16 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
// Int16.Equals(Object) Method
using System;
  
class GFG {
  
    // Main Method
    public static void Main()
    {
        // Declaring and initializing value1
        short value1 = 10;
  
        // Declaring and initializing value2
        // It will convert into Int16 implicitly 
        // by the compiler to check whether it is 
        // in the range of short data type i.e. 
        // Int16 or not
        object value2 = 37;
  
        // 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 37

Ejemplo 2:

// C# program to demonstrate the
// Int16.Equals(Object) Method
using System;
  
class GFG {
  
    // Main Method
    public static void Main()
    {
        // calling get() method
        get(5, 5);
        get(5, 4);
        get(10, 20);
        get(7, 7);
    }
  
    // defining get() method
    // The second parameter will get converted to Int16  
    // implicitly by the compiler to check whether  
    // it is in the range of short data type i.e. 
    // Int16 or not
    public static void get(short value1,
                         object value2)
    {
  
        // 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:

5 is not equal to 5
5 is not equal to 4
10 is not equal to 20
7 is not equal to 7

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 *