Skip to content
Related Articles
Get the best out of our app
GeeksforGeeks App
Open App
geeksforgeeks
Browser
Continue

Related Articles

List sublist() Method in Java with Examples

Improve Article
Save Article
Like Article
Improve Article
Save Article
Like Article

This method gives a view of the portion of this list between the specified fromIndex, inclusive, and toIndex, exclusive.

Syntax:

List subList(int fromIndex,
              int toIndex)

Parameters: This function has two parameter fromIndex and toIndex, which are the starting and ending ranges respectively to create a sublist form the given list.

Returns: This method returns the view of list between the given ranges.

Below programs show the implementation of this method.

Program 1:




// Java code to show the implementation of
// lastIndexOf method in list interface
import java.util.*;
public class GfG {
  
    // Driver code
    public static void main(String[] args)
    {
  
        // Initializing a list of type Linkedlist
        List<Integer> l = new LinkedList<>();
        l.add(1);
        l.add(3);
        l.add(5);
        l.add(7);
        l.add(3);
        System.out.println(l);
        System.out.println(l.lastIndexOf(3));
    }
}

Output:

[1, 3, 5, 7, 3]
4
Output:

[1, 3, 5, 7, 3]
4

Program 2: Below is the code to show implementation of list.subList() using Linkedlist.




// Java code to show the implementation of
// subList method in list interface
import java.util.*;
public class GfG {
  
    // Driver code
    public static void main(String[] args)
    {
  
        // Initializing a list of type Linkedlist
        List<Integer> l = new LinkedList<>();
        l.add(10);
        l.add(30);
        l.add(50);
        l.add(70);
        l.add(30);
        List<Integer> sub = new LinkedList<>();
        System.out.println(l);
        sub = l.subList(1, 3);
        System.out.println(sub);
    }
}

Output:

[10, 30, 50, 70, 30]
[30, 50]

Reference:
Oracle Docs


My Personal Notes arrow_drop_up
Last Updated : 19 Jun, 2019
Like Article
Save Article
Similar Reads
Related Tutorials