运行 ❯
获取你的
自己的 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("Mazda"); ArrayList<String> brands = new ArrayList<String>(); brands.add("Microsoft"); brands.add("W3Schools"); brands.add("Apple"); brands.addAll(1, cars); System.out.println(brands); } }
[Microsoft, Volvo, BMW, Ford, Mazda, W3Schools, Apple]