Languages
[Edit]
EN

Java - add items to ArrayList

0 points
Created by:
Vadim-Kotiv
414

In this article, we would like to show you how to add items to ArrayList in Java.

Quick solution:

List<String> fruits = new ArrayList<>();
fruits.add("Apple");

 

Practical example

In this example, we show how to add items to the fruits ArrayList using add() method.

import java.util.ArrayList;

public class Example {

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

        fruits.add("Apple");
        fruits.add("Banana");
        fruits.add("Cherry");

        System.out.println(fruits);
    }
}

output:

[Apple, Banana, Cherry]

Alternative titles

  1. Java - insert items to ArrayList
  2. Java - add elements to ArrayList
  3. Java - insert elements to 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