sublist
时间: 2023-11-27 10:54:57 浏览: 92
Sublist3r-master.zip_master_sublist_sublist3r_zip
subList() 是 Java 中 List 接口中的一个方法,用来获取一个指定范围内的子列表。它的语法如下:
```java
List<E> subList(int fromIndex, int toIndex)
```
其中,fromIndex 是子列表的起始位置(包含),toIndex 是子列表的结束位置(不包含)。
阅读全文