Get/set element

E get(int index)
Returns the element at the specified position in this list.
E set(int index, E element)
Replaces the element at the specified position in this list with the specified element (optional operation).

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

public class Main {
  public static void main(String[] args) {
    List list = new ArrayList();

    list.add("1");
    list.add("2");
    list.add("3");

    list.add("java2s.com");

    System.out.println(list);

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


  }
}

The output:


[1, 2, 3, java2s.com]
java2s.com

Replace the third element in a list


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

public class Main {
  public static void main(String[] args) {
    List list = new ArrayList();

    list.add("1");
    list.add("2");
    list.add("3");

    list.add("java2s.com");

    System.out.println(list);

    list.set(2, "java 2s .com");
    System.out.println(list);


  }
}

The output:


[1, 2, 3, java2s.com]
[1, 2, java 2s .com, java2s.com]
Home 
  Java Book 
    Collection  

List:
  1. List interface
  2. Add element to List
  3. Clear a List
  4. Does it contain certain element
  5. Compare two Lists
  6. Get the element index
  7. Get Iterator from a List
  8. Remove element from List
  9. Get/set element
  10. List size and empty flag
  11. Get the sub list from a list
  12. Convert List to Array