运行 ❯
获取你的
个人
Java 服务器
×
更改方向
更改主题,浅色/深色
转到 Spaces
import java.util.LinkedList; public class Main { public static void main(String[] args) { LinkedList<String> cars = new LinkedList<String>(); cars.add("Volvo"); cars.add("BMW"); cars.add("Ford"); cars.add("Mazda"); // Use removeFirst() remove the first item from the list cars.removeFirst(); System.out.println(cars); } }
[BMW、福特、马自达]