Método SimpleTimeZone hashCode() en Java con ejemplos

El método hashCode() de la clase SimpleTimeZone genera el código hash para el objeto SimpleDateFormat.

Sintaxis:

public int hashCode()

Parámetros: La función no acepta ningún parámetro.

Valor devuelto: Devuelve el código hash de este objeto.

Excepción: la función no lanza ninguna excepción.

El siguiente programa demuestra la función mencionada anteriormente:

Programa 1:

// program to demonstrate the
// function java.util.SimpleTimeZone.hashCode()
  
import java.util.*;
  
public class GFG {
  
    public static void main(String[] args)
    {
  
        // create simple time zone object
        SimpleTimeZone obj
            = new SimpleTimeZone(500, "US");
  
        System.out.println("SimpleTimeZone = "
                           + obj);
  
        // get hash code value and print
        System.out.println("Hash code is = "
                           + obj.hashCode());
    }
}
Producción:

SimpleTimeZone: java.util.SimpleTimeZone
[ 
 id=US,
 offset=500,
 dstSavings=3600000,
 useDaylight=false,
 startYear=0,
 startMode=0,
 startMonth=0,
 startDay=0,
 startDayOfWeek=0,
 startTime=0,
 startTimeMode=0,
 endMode=0,
 endMonth=0,
 endDay=0,
 endDayOfWeek=0,
 endTime=0,
 endTimeMode=0
]
Hash code is = 500

Programa 2:

// program to demonstrate the
// function java.util.SimpleTimeZone.hashCode()
  
import java.util.*;
  
public class GFG {
  
    public static void main(String[] args)
    {
  
        // create simple time zone object
        SimpleTimeZone obj
            = new SimpleTimeZone(500, "IN");
  
        System.out.println("SimpleTimeZone: "
                           + obj);
  
        // get hash code value and print
        System.out.println("Hash code is = "
                           + obj.hashCode());
    }
}
Producción:

SimpleTimeZone: java.util.SimpleTimeZone
[ 
 id=IN,
 offset=500,
 dstSavings=3600000,
 useDaylight=false,
 startYear=0,
 startMode=0,
 startMonth=0,
 startDay=0,
 startDayOfWeek=0,
 startTime=0,
 startTimeMode=0,
 endMode=0,
 endMonth=0,
 endDay=0,
 endDayOfWeek=0,
 endTime=0,
 endTimeMode=0
]
Hash code is = 500

Publicación traducida automáticamente

Artículo escrito por Twinkl Bajaj 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 *