DateFormat hashCode() method in Java with Examples Last Updated : 27 Mar, 2019 Comments Improve Suggest changes Like Article Like Report The hashCode() Method of DateFormat class is used to return the hash code value of this DateFormat object. The hash code is of integer type. Syntax: public int hashCode() Parameters: The method does not take any parameters. Return Value: The method returns the hash code value of this DateFormat object and is of integer type. Below programs illustrate the working of hashCode() Method of DateFormat: Example 1: Java // Java to illustrate hashCode() method import java.text.*; import java.util.*; public class DateFormat_Demo { public static void main(String[] args) { // Initializing DateFormat DateFormat DFormat = DateFormat.getDateTimeInstance(); // Displaying the formats Date date = new Date(); String str_Date1 = DFormat.format(date); System.out.println("The Original: " + (str_Date1)); // Displaying the hash code System.out.println("The hash code: " + DFormat.hashCode()); } } Output: The Original: Mar 27, 2019 10:20:51 AM The hash code: 2034585966 Example 2: Java // Java to illustrate hashCode() method import java.text.*; import java.util.*; public class DateFormat_Demo { public static void main(String[] args) { // Initializing DateFormat DateFormat DFormat = new SimpleDateFormat("MM/dd/yyyy"); // Displaying the formats Date date = new Date(); String str_Date1 = DFormat.format(date); System.out.println("The Original: " + (str_Date1)); // Displaying the hash code System.out.println("The hash code: " + DFormat.hashCode()); } } Output: The Original: 03/27/2019 The hash code: 2087096576 Reference: https://docs.oracle.com/javase/7/docs/api/java/text/DateFormat.html#hashCode() Create Quiz Comment C chinmoy lenka Follow 0 Improve C chinmoy lenka Follow 0 Improve Article Tags : Misc Java Java - util package Java-Functions Java-DateFormat +1 More Explore Java BasicsIntroduction to Java3 min readJava Programming Basics9 min readJava Methods6 min readAccess Modifiers in Java4 min readArrays in Java7 min readJava Strings7 min readRegular Expressions in Java3 min readOOP & InterfacesClasses and Objects in Java5 min readAccess Modifiers in Java4 min readJava Constructors4 min readJava OOP(Object Oriented Programming) Concepts10 min readJava Packages2 min readJava Interface7 min readCollectionsCollections in Java12 min readCollections Class in Java13 min readCollection Interface in Java4 min readIterator in Java4 min readJava Comparator Interface5 min readException HandlingJava Exception Handling6 min readJava Try Catch Block4 min readJava final, finally and finalize4 min readChained Exceptions in Java3 min readNull Pointer Exception in Java5 min readException Handling with Method Overriding in Java4 min readJava AdvancedJava Multithreading Tutorial3 min readSynchronization in Java7 min readFile Handling in Java4 min readJava Method References7 min readJava 8 Stream Tutorial7 min readJava Networking6 min readJDBC Tutorial5 min readJava Memory Management3 min readGarbage Collection in Java6 min readMemory Leaks in Java3 min readPractice JavaJava Interview Questions and Answers1 min readJava Programs - Java Programming Examples7 min readJava Exercises - Basic to Advanced Java Practice Programs with Solutions5 min readJava Quiz1 min readJava Project Ideas For Beginners and Advanced15+ min read Like