protected List<List<BNRoutePlanNode>> routeList = new ArrayList<>(); 获取子列表的list
时间: 2023-08-22 11:03:34 浏览: 88
list嵌套list
你可以使用 `get(int index)` 方法来获取 `routeList` 中指定位置的子列表。例如,获取第一个子列表可以使用以下代码:
```
List<BNRoutePlanNode> firstSubList = routeList.get(0);
```
如果你想遍历 `routeList` 中所有的子列表,可以使用以下代码:
```
for (List<BNRoutePlanNode> subList : routeList) {
// 对每一个子列表进行操作
}
```
在上述代码中,`for` 循环会遍历 `routeList` 中的所有子列表,并将每一个子列表赋值给变量 `subList`,你可以在循环体内对 `subList` 进行操作。
阅读全文