DateFormat hashCode() method in Java with Examples
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 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()); } } |
The Original: Mar 27, 2019 10:20:51 AM The hash code: 2034585966
Example 2:
// 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()); } } |
The Original: 03/27/2019 The hash code: 2087096576
Reference: https://docs.oracle.com/javase/7/docs/api/java/text/DateFormat.html#hashCode()
Recommended Posts:
- DateFormat isLenient() Method in Java with Examples
- DateFormat getDateInstance() Method in Java with Examples
- DateFormat clone() method in Java with Examples
- DateFormat equals() Method in Java with Examples
- DateFormat getDateTimeInstance() Method in Java with Examples
- DateFormat getTimeZone() Method in Java with Examples
- DateFormat getCalendar() Method in Java with Examples
- DateFormat getAvailableLocales() Method in Java with Examples
- DateFormat format() Method in Java with Examples
- DateFormat getTimeInstance() Method in Java with Examples
- DateFormat setLenient() Method in Java with Examples
- DateFormat setTimeZone() Method in Java with Examples
- DateFormat setCalendar() Method in Java with Examples
- DateFormat parse(string , ParsePosition) Method in Java with Examples
- Map hashCode() Method in Java with Examples
If you like GeeksforGeeks and would like to contribute, you can also write an article using contribute.geeksforgeeks.org or mail your article to contribute@geeksforgeeks.org. See your article appearing on the GeeksforGeeks main page and help other Geeks.
Please Improve this article if you find anything incorrect by clicking on the "Improve Article" button below.