Friday, January 23, 2026
HomeLanguagesJavaList hashCode() Method in Java with Examples

List hashCode() Method in Java with Examples

This method is used to generate the hashCode for the given list.

Syntax:

int hashCode()

Parameters: This function has no parameter.

Returns: This function returns the hashCode value for the given list.

Below programs show the implementation of this method.

Program 1:




// Java code to show the implementation of
// hashCode method in list interface
import java.util.*;
public class GfG {
  
    // Driver code
    public static void main(String[] args)
    {
  
        // Initializing a list of type Linkedlist
        List<Integer> l = new LinkedList<>();
        l.add(10);
        l.add(15);
        l.add(20);
        System.out.println(l);
  
        int hash = l.hashCode();
  
        System.out.println(hash);
    }
}


Output:

[10, 15, 20]
39886

Program 2: Below is the code to show implementation of list.hashCode() using Linkedlist.




// Java code to show the implementation of
// hashCode method in list interface
import java.util.*;
public class GfG {
  
    // Driver code
    public static void main(String[] args)
    {
  
        // Initializing a list of type Linkedlist
        List<String> l = new LinkedList<>();
        l.add("10");
        l.add("15");
        l.add("20");
        System.out.println(l);
  
        int hash = l.hashCode();
  
        System.out.println(hash);
    }
}


Output:

[10, 15, 20]
1586008

Reference:
Oracle Docs

RELATED ARTICLES

Most Popular

Dominic
32475 POSTS0 COMMENTS
Milvus
119 POSTS0 COMMENTS
Nango Kala
6847 POSTS0 COMMENTS
Nicole Veronica
11977 POSTS0 COMMENTS
Nokonwaba Nkukhwana
12065 POSTS0 COMMENTS
Shaida Kate Naidoo
6986 POSTS0 COMMENTS
Ted Musemwa
7221 POSTS0 COMMENTS
Thapelo Manthata
6934 POSTS0 COMMENTS
Umr Jansen
6912 POSTS0 COMMENTS