The remove(int index) method of java.util.AbstractList class is used to remove an element from an abstract list from a specific position or index.
Syntax:
AbstractList.remove(int index)
Parameters: The parameter index is of integer data type and specifies the position of the element to be removed from the AbstractList.
Return Value: This method returns the element that has just been removed from the list.
Below programs illustrate the AbstractList.remove(int index) method:
Program 1:
import java.util.*;
import java.util.LinkedList;
public class AbstractListDemo {
public static void main(String args[])
{
AbstractList<String>
list = new LinkedList<String>();
list.add( "Geeks" );
list.add( "for" );
list.add( "Geeks" );
list.add( "10" );
list.add( "20" );
System.out.println( "AbstractList: " + list);
list.remove( 3 );
System.out.println( "Final AbstractList: " + list);
}
}
|
Output:
AbstractList: [Geeks, for, Geeks, 10, 20]
Final AbstractList: [Geeks, for, Geeks, 20]
Program 2:
import java.util.*;
import java.util.LinkedList;
public class AbstractListDemo {
public static void main(String args[])
{
AbstractList<String> list = new LinkedList<String>();
list.add( "Geeks" );
list.add( "for" );
list.add( "Geeks" );
list.add( "10" );
list.add( "20" );
System.out.println( "AbstractList:" + list);
list.remove( 0 );
System.out.println( "Final AbstractList:" + list);
}
}
|
Output:
AbstractList:[Geeks, for, Geeks, 10, 20]
Final AbstractList:[for, Geeks, 10, 20]
Whether you're preparing for your first job interview or aiming to upskill in this ever-evolving tech landscape,
GeeksforGeeks Courses are your key to success. We provide top-quality content at affordable prices, all geared towards accelerating your growth in a time-bound manner. Join the millions we've already empowered, and we're here to do the same for you. Don't miss out -
check it out now!
Last Updated :
26 Nov, 2018
Like Article
Save Article