Java中的 List sublist() 方法及示例
此方法提供此列表在指定 fromIndex(包括)和 toIndex(不包括)之间的部分的视图。
句法:
List subList(int fromIndex,
int toIndex)
参数:此函数有两个参数fromIndex和toIndex ,它们分别是从给定列表创建子列表的开始和结束范围。
返回:此方法返回给定范围之间的列表视图。
下面的程序显示了这种方法的实现。
方案一:
// 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 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));
}
}
输出:
[1, 3, 5, 7, 3]
4
输出:
[1, 3, 5, 7, 3]
4
程序 2:下面是显示使用 Linkedlist 实现 list.subList() 的代码。
// 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 l = new LinkedList<>();
l.add(10);
l.add(30);
l.add(50);
l.add(70);
l.add(30);
List sub = new LinkedList<>();
System.out.println(l);
sub = l.subList(1, 3);
System.out.println(sub);
}
}
输出:
[10, 30, 50, 70, 30]
[30, 50]
参考:
甲骨文文档