Languages
[Edit]
EN

Java - reverse ArrayList

0 points
Created by:
Emerson-V
303

In this article, we would like to show you how to reverse the ArrayList in Java.

Quick solution:

Collections.reverse(myArrayList);

 

Practical example

In this example we use Collections.reverse() to reverse the numbers ArrayList.

import java.util.*;

public class Example {

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

        // add items to the ArrayList
        numbers.add(1);
        numbers.add(2);
        numbers.add(3);

        // reverse ArrayList
        Collections.reverse(numbers);

        System.out.println(numbers);
    }
}

Output:

[3, 2, 1]

Alternative titles

  1. Java - how to reverse ArrayList
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