El método hashCode() de la clase StringWriter en Java se usa para obtener el valor HashCode de esta instancia de StringWriter. Este método no acepta ningún parámetro y devuelve el valor int requerido.
Sintaxis:
public int hashCode()
Parámetros: Este método acepta no acepta ningún parámetro.
Valor de retorno: este método devuelve un valor int que es el valor HashCode de la instancia de StringWriter.
Los siguientes métodos ilustran el funcionamiento del método hashCode():
Programa 1:
// Java program to demonstrate // StringWriter hashCode() method import java.io.*; class GFG { public static void main(String[] args) { try { // Create a StringWriter instance StringWriter StringWriter = new StringWriter(); // Get the String // to be written in the stream String string = "GeeksForGeeks"; // Write the string // to this StringWriter using write() method StringWriter.write(string); // Get the HashCode value using hashCode() System.out.println("HashCode value: " + StringWriter.hashCode()); } catch (Exception e) { System.out.println(e); } } }
Producción:
HashCode value: 589431969
Programa 2:
// Java program to demonstrate // StringWriter hashCode() method import java.io.*; class GFG { public static void main(String[] args) { try { // Create a StringWriter instance StringWriter StringWriter = new StringWriter(); // Get the String // to be written in the stream String string = "GFG"; // Write the string // to this StringWriter using write() method StringWriter.write(string); // Get the HashCode value using hashCode() System.out.println("HashCode value: " + StringWriter.hashCode()); } catch (Exception e) { System.out.println(e); } } }
Producción:
HashCode value: 589431969