El método UInt64.Equals se usa para obtener un valor que indica si la instancia actual es igual a un objeto especificado o un entero largo sin signo de 64 bits o no. Hay 2 métodos en la lista de sobrecarga de este método de la siguiente manera:
- Método Igual a (UInt64)
- Método Igual a (Objeto)
Método UInt64.Equals(UInt64)
Este método se utiliza para devolver un valor que indica si la instancia actual es igual a un valor entero largo sin signo de 64 bits especificado o no.
Sintaxis: public bool Equals (ulong obj);
Aquí, se necesita un valor entero largo sin signo de 64 bits para compararlo con la instancia actual.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 UInt64.Equals(UInt64) :
Ejemplo 1:
// C# program to demonstrate the // UInt64.Equals(UInt64) Method using System; using System.Globalization; class GFG { // Main Method public static void Main() { // Declaring and initializing value1 ulong value1 = 5232642; // Declaring and initializing value2 ulong value2 = 2317648; // using Equals(UInt64) 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); } }
5232642 is not equal to 2317648
Ejemplo 2:
// C# program to demonstrate the // UInt64.Equals(UInt64) Method using System; using System.Globalization; class GFG { // Main Method public static void Main() { // calling get() method get(9213128, 2131978); get(656455, 656455); get(10120, 10120); get(UInt64.MaxValue, UInt64.MinValue); } // defining get() method public static void get(ulong value1, ulong value2) { // using Equals(UInt64) 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); } }
9213128 is not equal to 2131978 656455 is equal to 656455 10120 is equal to 10120 18446744073709551615 is not equal to 0
Método UInt64.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 compararlo con la instancia actual.Valor devuelto: este método devuelve verdadero si obj es una instancia de UInt64 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 // UInt64.Equals(Object) Method using System; using System.Globalization; class GFG { // Main Method public static void Main() { // Declaring and initializing value1 ulong value1 = 13421227; // Declaring and initializing value2 object value2 = 1 / 417; // 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); } }
13421227 is not equal to 0
Ejemplo 2:
// C# program to demonstrate the // UInt64.Equals(Object) Method using System; using System.Globalization; class GFG { // Main Method public static void Main() { // calling get() method get(1231264, 7234455); get(1423412, (ulong)14432314); get(7742344, (ulong)7742344); get(5443, 7346); } // defining get() method public static void get(ulong 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); } }
1231264 is not equal to 7234455 1423412 is not equal to 14432314 7742344 is equal to 7742344 5443 is not equal to 7346
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