This method is used to generate a hashCode for the given map containing key and values.
Syntax:
int hashCode()
Parameters: This method has no argument.
Returns: This method returns the hashCode value for the given map.
Below programs show the implementation of int hashCode() method.
Program 1:
import java.util.*;
public class GfG {
public static void main(String[] args)
{
Map<Integer, String> map = new HashMap<>();
map.put( 1 , "One" );
map.put( 3 , "Three" );
map.put( 5 , "Five" );
map.put( 7 , "Seven" );
map.put( 9 , "Ninde" );
System.out.println(map);
int hash = map.hashCode();
System.out.println(hash);
}
}
|
Output:
{1=One, 3=Three, 5=Five, 7=Seven, 9=Ninde}
238105666
Program 2: Below is the code to show implementation of hashCode().
import java.util.*;
public class GfG {
public static void main(String[] args)
{
Map<String, String> map = new HashMap<>();
map.put( "1" , "One" );
map.put( "3" , "Three" );
map.put( "5" , "Five" );
map.put( "7" , "Seven" );
map.put( "9" , "Ninde" );
System.out.println(map);
int hash = map.hashCode();
System.out.println(hash);
}
}
|
Output:
{1=One, 3=Three, 5=Five, 7=Seven, 9=Ninde}
238105618
Reference:
Oracle Docs
Feeling lost in the vast world of Backend Development? It's time for a change! Join our
Java Backend Development - Live Course and embark on an exciting journey to master backend development efficiently and on schedule.
What We Offer:
- Comprehensive Course
- Expert Guidance for Efficient Learning
- Hands-on Experience with Real-world Projects
- Proven Track Record with 100,000+ Successful Geeks
Last Updated :
02 Jan, 2019
Like Article
Save Article