List of usage examples for java.text SimpleDateFormat hashCode
@Override public int hashCode()
SimpleDateFormat
object. From source file:Main.java
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); }