El método Double.GetHashCode() se usa para devolver el código hash para esta instancia.
Sintaxis: anulación pública int GetHashCode();
Valor devuelto: este método devuelve un código hash entero con signo de 32 bits.
Los siguientes programas ilustran el uso del método Double.GetHashCode() :
Ejemplo 1:
// C# program to demonstrate the // Double.GetHashCode() Method using System; using System.Globalization; class GFG { // Main Method public static void Main() { // Declaring and initializing value1 double value1 = 10d; // getting the HashCode // using GetHashCode() method int value = value1.GetHashCode(); // Display the HashCode Console.WriteLine("HashCode is {0}", value); } }
Producción:
HashCode is 1076101120
Ejemplo 2:
// C# program to demonstrate the // Double.Equals(Double) // Method using System; using System.Globalization; class GFG { // Main Method public static void Main() { // calling get() method get(5d); get(5.5d); get(10d); get(7.5d); } // defining get() method public static void get(double value1) { // getting the HashCode // using GetHashCode() method int value = value1.GetHashCode(); // Display the HashCode Console.WriteLine("HashCode is {0}", value); } }
Producción:
HashCode is 1075052544 HashCode is 1075183616 HashCode is 1076101120 HashCode is 1075707904
Referencia:
Publicación traducida automáticamente
Artículo escrito por RohitPrasad3 y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA