Languages
[Edit]
EN

Java - count number of element occurrences in ArrayList

0 points
Created by:
Suzannah-Estrada
620

In this article, we would like to show you how to count the number of element occurrences in Arraylist in Java.

Quick solution:

int occurrences = Collections.frequency(myArrayList, element);

 

Practical example

In this example, we use Collections.frequency() method to count the number of A elements in letters ArrayList.

import java.util.*;

public class Example {

    public static void main(String[] args) {
        List<String> letters = new ArrayList<>();

        letters.add("A");
        letters.add("A");
        letters.add("A");

        int occurrencesA = Collections.frequency(letters, "A");
        System.out.println("number of A element occurrences: " + occurrencesA);
    }
}

Output:

number of A element occurrences: 3
Donate to Dirask
Our content is created by volunteers - like Wikipedia. If you think, the things we do are good, donate us. Thanks!
Join to our subscribers to be up to date with content, news and offers.

Java Collections - ArrayList

Native Advertising
🚀
Get your tech brand or product in front of software developers.
For more information Contact us
Dirask - we help you to
solve coding problems.
Ask question.

❤️💻 🙂

Join