Question: The actual ArrayList class in the java .util package has a method called subList that returns a view of a subportion of a list through
The actual ArrayList class in the java .util package has a method called subList that returns a view of a subportion of a list through a given range of indexes. It can be useful to think of part of a list as if it were its own list, complete with its own set of indexes and values. The sublist is âbackedâ by the original list, meaning that it is not a copy; if any change is made to the sublist, the original list is also affected. In order to implement this method, you will need to write an inner class inside ArrayList

public ArrayList subList (int fromIndex, int toIndex)
Step by Step Solution
3.39 Rating (171 Votes )
There are 3 Steps involved in it
ArrayList subList method in Java with Examples The subList method of javautilArrayList class is used to return a view of the portion of this list between the specified fromIndex inclusive and toIndex ... View full answer
Get step-by-step solutions from verified subject matter experts
Document Format (2 attachments)
2079_60f58f34f2b08_857015.pdf
180 KBs PDF File
2079_60f58f34f2b08_857015.docx
120 KBs Word File
