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