El método hashCode() se utiliza para encontrar el código hash de la string indicada.
Definición del método: int hashCode()
Tipo de retorno: Devuelve un código hash entero de la string dada.
Ejemplo 1:
// Scala program of int hashCode() // method // Creating object object GfG { // Main method def main(args:Array[String]) { // Applying hashCode method val result = "Nidhi".hashCode() // Displays output println(result) } }
Producción:
75262122
Ejemplo #2:
// Scala program of int hashCode() // method // Creating object object GfG { // Main method def main(args:Array[String]) { // Applying hashCode method val result = " ".hashCode() // Displays output println(result) } }
Producción:
32
Publicación traducida automáticamente
Artículo escrito por nidhi1352singh y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA