El método hashCode() de la clase ValueRange se usa para obtener el valor hashCode para este ValueRange. Devuelve un valor entero que es el valor hashCode para esta instancia de ValueRange.
Sintaxis:
public int hashCode()
Parámetros:
Este método no acepta nada.
Valor de retorno:
este método devuelve un código hash adecuado.
Los siguientes programas ilustran el método ValueRange.hashCode():
Programa 1:
// Java program to demonstrate // ValueRange.hashCode() method import java.time.LocalDateTime; import java.time.temporal.ChronoField; import java.time.temporal.ValueRange; public class GFG { public static void main(String[] args) { // create LocalDateTime LocalDateTime l1 = LocalDateTime .parse("2018-02-06T19:21:12"); // Get ValueRange object ValueRange vR = l1.range(ChronoField.DAY_OF_MONTH); // apply hashCode() int code = vR.hashCode(); // print results System.out.println("hashCode: " + code); } }
Producción:
hashCode: 1900573
Programa 2:
// Java program to demonstrate // ValueRange.hashCode() method import java.time.temporal.ValueRange; public class GFG { public static void main(String[] args) { // create ValueRange object ValueRange vRange = ValueRange.of(1111, 66666); // apply hashCode() int code = vRange.hashCode(); // print results System.out.println("hashCode: " + code); } }
Producción:
hashCode: 3932210
Referencias: https://docs.oracle.com/javase/10/docs/api/java/time/temporal/ValueRange.html#hashCode()
Publicación traducida automáticamente
Artículo escrito por AmanSingh2210 y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA