Wednesday, July 3, 2024
HomeLanguagesJavaSimpleDateFormat hashCode() Method in Java with Examples

SimpleDateFormat hashCode() Method in Java with Examples

The hashCode() Method of SimpleDateFormat class is used to return the hash code value of this SimpleDateFormat 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 SimpleDateFormat object and is of integer type.

Below programs illustrate the working of hashCode() Method of SimpleDateFormat:

Example 1:




// Java to illustrate hashCode() method
  
import java.text.*;
import java.util.*;
  
public class SimpleDateFormat_Demo {
    public static void main(String[] args)
        throws InterruptedException
    {
        // Initializing SimpleDateFormat
        SimpleDateFormat SDFormat
            = new SimpleDateFormat(
                "dd/MM/yyyy");
  
        // Displaying the formats
        Date date = new Date();
        String str_Date1 = SDFormat.format(date);
        System.out.println("The Original: "
                           + (str_Date1));
  
        // Displaying the hash code
        System.out.println("The hash code: "
                           + SDFormat.hashCode());
    }
}


Output:

The Original: 30/01/2019
The hash code: -650712384

Example 2:




// Java to illustrate hashCode() method
  
import java.text.*;
import java.util.*;
  
public class SimpleDateFormat_Demo {
    public static void main(String[] args)
        throws InterruptedException
    {
        // Initializing SimpleDateFormat
        SimpleDateFormat SDFormat
            = new SimpleDateFormat(
                "MM/dd/yyyy");
  
        // Displaying the formats
        Date date = new Date();
        String str_Date1 = SDFormat.format(date);
        System.out.println("The Original: "
                           + (str_Date1));
  
        // Displaying the hash code
        System.out.println("The hash code: "
                           + SDFormat.hashCode());
    }
}


Output:

The Original: 01/30/2019
The hash code: 2087096576

Nokonwaba Nkukhwana
Experience as a skilled Java developer and proven expertise in using tools and technical developments to drive improvements throughout a entire software development life cycle. I have extensive industry and full life cycle experience in a java based environment, along with exceptional analytical, design and problem solving capabilities combined with excellent communication skills and ability to work alongside teams to define and refine new functionality. Currently working in springboot projects(microservices). Considering the fact that change is good, I am always keen to new challenges and growth to sharpen my skills.
RELATED ARTICLES

LEAVE A REPLY

Please enter your comment!
Please enter your name here

Most Popular

Recent Comments