Replace the element at the position

ReturnMethodSummary
Eset(int index, E element)Replaces the element at the specified position in this list with the specified element.

  import java.util.LinkedList;

public class Main{
    public static void main(String args[]) {
        LinkedList<String> ll = new LinkedList<String>();

        ll.add("A");
        ll.add("java2s.com");
        ll.add("B");
        ll.add("C");
        ll.add("java2s.com");

        ll.set(0, "java2s.c o m");

        System.out.println(ll);
    }
}

The output:


[java2s.c o m, java2s.com, B, C, java2s.com]
java2s.com  | Contact Us | Privacy Policy
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.