El método Int64.Equals() se usa para obtener un valor que muestra si la instancia actual es igual a un objeto específico o Int64. Hay 2 métodos en la lista de sobrecarga de este método de la siguiente manera:
- Método Igual a (Int64)
- Método Igual a (Objeto)
Int64.Equals(Int64)
Este método se usa para devolver un valor que indica si la instancia actual es igual a un valor Int64 especificado o no.
Sintaxis: public bool Equals (long obj);
Aquí, se necesita un valor Int64 para compararlo 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 Int64.Equals(Int64) :
Ejemplo 1:
// C# program to demonstrate the // Int64.Equals(Int64) Method using System; using System.Globalization; class GFG { // Main Method public static void Main() { // Declaring and initializing value1 long value1 = 45643242; // Declaring and initializing value2 long value2 = 2564233; // using Equals(Int64) 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); } }
45643242 is not equal to 2564233
Ejemplo 2:
// C# program to demonstrate the // Int64.Equals(Int64) Method using System; using System.Globalization; class GFG { // Main Method public static void Main() { // calling get() method get(44355, 578); get(423445, 423445); get(12560, 28960); get(778, 798); } // defining get() method public static void get(long value1, long value2) { // using Equals(Int64) 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); } }
44355 is not equal to 578 423445 is equal to 423445 12560 is not equal to 28960 778 is not equal to 798
Int64.Equals(Objeto) Método
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 Int64 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 // Int64.Equals(Object) Method using System; using System.Globalization; class GFG { // Main Method public static void Main() { // Declaring and initializing value1 long value1 = 1879650; // 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); } }
1879650 is not equal to 0
Ejemplo 2:
// C# program to demonstrate the // Int64.Equals(Object) Method using System; using System.Globalization; class GFG { // Main Method public static void Main() { // calling get() method get(54547, 54585); get(555, 489); get(10450, 10450); get(745, 745); } // defining get() method public static void get(long 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); } }
54547 is not equal to 54585 555 is not equal to 489 10450 is not equal to 10450 745 is equal to 745
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