Wednesday, July 3, 2024
HomeLanguagesJavaJava.util.Collections.frequency() in Java with Examples

Java.util.Collections.frequency() in Java with Examples

java.util.Collections.frequency() method is present in java.util.Collections class. It is used to get the frequency of a element present in the specified list of Collection. More formally, it returns the number of elements e in the collection.

Syntax

public static int frequency(Collection<?> c, Object o)
Parameters : 
c - the collection in which to determine the frequency of o
o - the object whose frequency is to be determined
Returns :
Returns the number of elements in the specified collection 
equal to the specified object.
Throws:
NullPointerException - if c is null




// Java program to demonstrate working of 
// java.utils.Collections.frequency()
  
import java.util.*;
   
public class FrequencyDemo
{
    public static void main(String[] args)
    {
        // Let us create a list of strings
        List<String>  mylist = new ArrayList<String>();
        mylist.add("practice");
        mylist.add("code");
        mylist.add("code");
        mylist.add("quiz");
        mylist.add("neveropen");
   
        // Here we are using frequency() method
        // to get  frequency of element "code"
        int freq = Collections.frequency(mylist, "code");
   
        System.out.println(freq);
    }
}


Output:

2

How to Quickly get frequency of an element in an array in Java ?

Arrays class in Java doesn’t have frequency method. But we can use Collections.frequency() to get frequency of an element in an array also.




// Java program to get frequency of an element 
//  with java.utils.Collections.frequency()
  
import java.util.*;
   
public class FrequencyDemo
{
    public static void main(String[] args)
    {
        // Let us create an array of integers
        Integer arr[] = {10, 20, 20, 30, 20, 40, 50};
   
        // Please refer below post for details of asList()
        int freq = Collections.frequency(Arrays.asList(arr), 20);
   
        System.out.println(freq);
    }
}


Output:

3

This article is contributed by Gaurav Miglani. If you like Lazyroar and would like to contribute, you can also write an article using contribute.neveropen.co.za or mail your article to contribute@neveropen.co.za. See your article appearing on the Lazyroar main page and help other Geeks.

Please write comments if you find anything incorrect, or you want to share more information about the topic discussed above.

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