Implémentation de la classe ArrayList dans la liste Java

import java.util.List;
import java.util.ArrayList;

class Main {

    public static void main(String[] args) {
        // Creating list using the ArrayList class
        List<String> list = new ArrayList<>();

        // Add elements to the list
        list.add("Apple");  
        list.add("Mango");  
        list.add("Banana");  

        System.out.println("List: " + list);

        // Access element from the list
        String str = list.get(1);
        System.out.println("Accessed Element: " + str+"\n");

        // Remove element from the list
        String removedstr = list.remove(1);
        System.out.println("Removed Element: " + removedstr);
    }
}
Outrageous Ostrich