Home Tutorial Java Collections Arraylist Java ArrayList removerange

 
 

Java ArrayList removerange
Posted on: October 23, 2009 at 12:00 AM
This section demonstrates how to use the removeRange() method

  • removeRange() is a protected method of the Java ArrayList.
  • It removes elements  from the given list present in the given range.
  • As it is a protected method, so it cannot be directly used.
  • A class has to extend it then it can be used.


Java Arraylist Remove range Example
import java.util.*;

public class List1 extends ArrayList{

public static void main(String[] args) {
String  ar[]={"india","pakistan","United Kingdom","Japan"};
List1 list=new List1();
list.add(ar[0]);
list.add(ar[1]);
list.add(ar[2]);
list.add(ar[3]);
System.out.println(list);
list.removeRange(0,2);
System.out.println(list);
}
}
Output
[india, pakistan, United Kingdom, Japan]
[United Kingdom, Japan]

Related Tags for Java ArrayList removerange:


Ask Questions?

If you are facing any programming issue, such as compilation errors or not able to find the code you are looking for.

Ask your questions, our development team will try to give answers to your questions.