集册 Java实例教程 要将对象插入列表中的特定位置,请在add方法中指定索引。

要将对象插入列表中的特定位置,请在add方法中指定索引。

欢马劈雪     最近更新时间:2020-01-02 10:19:05

450
提示:您可在线编辑运行本教程的实例 - 运行实例,去试试!
要将对象插入列表中的特定位置,请在add方法中指定索引。

import java.util.LinkedList;


public class Main {/** 来 自 nowjava.com - 时代Java**/

  public static void main(String[] args) {

    LinkedList<String> officers = new LinkedList<String>();

    officers.add("Blake");

    officers.add("Burns");

    officers.add("Jack");

    officers.add("P");

    officers.add("Tom");

    officers.add(2, "new");

    for (String s : officers)

       System.out.println(s);

  }

}