提示:您可在线编辑运行本教程的实例 - 运行实例,去试试!
可以在remove方法中删除带有索引号或对要删除的对象的引用的项。
import java.util.LinkedList; public class Main { public static void main(String[] args) {/** 时 代 J a v a - nowjava.com 提 供 **/ LinkedList<String> officers = new LinkedList<String>(); // add the original officers officers.add("Blake"); officers.add("Jack"); officers.add("Tuttle"); officers.add("book2s"); officers.add("Pierce"); officers.add("nowjava.com");