从 Java 中的 ArrayList 中检索元素
使用 ArrayList 类中的 java.util.ArrayList.get() 方法,可以从 Java 中的 ArrayList 中检索元素。此方法有一个参数,即要返回的元素的索引。
演示此操作的程序如下
示例
import java.util.ArrayList; import java.util.List; public class Demo { public static void main(String args[]) throws Exception { List aList = new ArrayList(); aList.add("James"); aList.add("George"); aList.add("Bruce"); aList.add("Susan"); aList.add("Martha"); System.out.println("The element at index 3 in the ArrayList is: " + aList.get(3)); } }
上述程序的输出如下
The element at index 3 in the ArrayList is: Susan
现在来了解一下上述程序。创建 ArrayList aList。然后,使用 ArrayList.add() 将元素添加到 ArrayList 中。
然后,使用 ArrayList.get() 方法检索索引 3 处的元素,并显示此元素。演示此操作的代码片段如下
List aList = new ArrayList(); aList.add("James"); aList.add("George"); aList.add("Bruce"); aList.add("Susan"); aList.add("Martha"); System.out.println("The element at index 3 in the ArrayList is: " + aList.get(3));
广告