Java SimpleDateFormat.hashCode()
Syntax
SimpleDateFormat.hashCode() has the following syntax.
public int hashCode()
Example
In the following code shows how to use SimpleDateFormat.hashCode() method.
// ww w . j ava2 s . c om
import java.text.SimpleDateFormat;
import java.util.Date;
public class Main {
public static void main(String[] args) throws Exception {
SimpleDateFormat formatter = new SimpleDateFormat();
String date = formatter.format(new Date());
System.out.println(formatter.hashCode());
System.out.println("date = " + date);
}
}
The code above generates the following result.