Related Examples
 

Java LinkedList remove Example

LinkedList class remove method example. This example shows you how to use remove method.


LinkedList class remove method example. public LinkedList remove() Retrieves and removes the head (first element) of this list.

Here is the code

/**
 * @ # Remove.java
 * A class repersenting use to Remove method of LinkedList class in java.util package
 * version 15 May 2008
 * author Rose India 
 */
import java.util.*;

public class Remove {

    public static void main(String args[]) {
        LinkedList list = new LinkedList();
        int i = 11;
        String str = "Rose";

        //Add the specified element to the end of this list.
        list.add(i);
        list.add(str);

        //Remove first element
        System.out.println(
"Removed element " + list.remove());
        System.out.println("list = " + list);
    }
}

Output
Removed lement 11
list = [Rose]

Post Comment
Name:
E-mail:
Contact no :
Comments:
  Refresh Image
Verify Image:
 
 
Your Comment's
 
 
 

HOME | COPYRIGHT | CONTACT US