运行 ❯
获取您
自己的 Java
服务器
×
更改方向
更改主题,深色/浅色
转至 Spaces
import java.util.ArrayList; public class Main { public static void main(String[] args) { ArrayList<String> cars = new ArrayList<String>(); cars.add("Volvo"); cars.add("BMW"); cars.add("Ford"); cars.add(0, "Mazda"); // Insert element at the beginning of the list (index 0) System.out.println(cars); } }
[马自达、沃尔沃、宝马、福特]