List: get(int index) : List « java.util « Java by API






List: get(int index)

  
import java.util.ArrayList;
import java.util.List;

public class Main {
  public static void main(String args[]) throws Exception {

    List<String> list = new ArrayList<String>();
    list.add("A");
    list.add("B");
    list.add("C");

    System.out.println(list.get(2));

  }
}

   
    
  








Related examples in the same category

1.List: add(T e)
2.List: addAll(Collection c)
3.List: clear()
4.List: clone()
5.List: contains(Object o)
6.List: equals(Object o)
7.List: isEmpty()
8.List: iterator()
9.List: lastIndexOf(Object o)
10.List: listIterator()
11.List: remove(int index)
12.List: remove(Object o)
13.List: removeAll(Collection c)
14.List: retainAll(Collection c)
15.List: set(int index, T element)
16.List: subList(int fromIndex, int toIndex)
17.List: toArray(T[] a)