Método SimpleDateFormat hashCode() en Java con ejemplos

El método hashCode() de la clase SimpleDateFormat se utiliza para devolver el valor del código hash de este objeto SimpleDateFormat. El código hash es de tipo entero.

Sintaxis:

public int hashCode()

Parámetros: El método no toma ningún parámetro.

Valor devuelto: el método devuelve el valor del código hash de este objeto SimpleDateFormat y es de tipo entero.

Los siguientes programas ilustran el funcionamiento del método hashCode() de SimpleDateFormat:

Ejemplo 1:

// Java to illustrate hashCode() method
  
import java.text.*;
import java.util.*;
  
public class SimpleDateFormat_Demo {
    public static void main(String[] args)
        throws InterruptedException
    {
        // Initializing SimpleDateFormat
        SimpleDateFormat SDFormat
            = new SimpleDateFormat(
                "dd/MM/yyyy");
  
        // Displaying the formats
        Date date = new Date();
        String str_Date1 = SDFormat.format(date);
        System.out.println("The Original: "
                           + (str_Date1));
  
        // Displaying the hash code
        System.out.println("The hash code: "
                           + SDFormat.hashCode());
    }
}
Producción:

The Original: 30/01/2019
The hash code: -650712384

Ejemplo 2:

// Java to illustrate hashCode() method
  
import java.text.*;
import java.util.*;
  
public class SimpleDateFormat_Demo {
    public static void main(String[] args)
        throws InterruptedException
    {
        // Initializing SimpleDateFormat
        SimpleDateFormat SDFormat
            = new SimpleDateFormat(
                "MM/dd/yyyy");
  
        // Displaying the formats
        Date date = new Date();
        String str_Date1 = SDFormat.format(date);
        System.out.println("The Original: "
                           + (str_Date1));
  
        // Displaying the hash code
        System.out.println("The hash code: "
                           + SDFormat.hashCode());
    }
}
Producción:

The Original: 01/30/2019
The hash code: 2087096576

Publicación traducida automáticamente

Artículo escrito por Chinmoy Lenka y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA

Deja una respuesta

Tu dirección de correo electrónico no será publicada. Los campos obligatorios están marcados con *