gpt4 book ai didi

java - 在数组上查找集合的索引

转载 作者:行者123 更新时间:2023-12-02 07:25:02 25 4
gpt4 key购买 nike

我有以下循环

    for (Annotation currAnnotation : annotation.getAnnotations())
{
List<Map<String, String>> list = annotation.getList();
list.get(index)

索引应该是循环的索引,我该如何实现呢?我需要从列表中获取特定条目。

谢谢!

最佳答案

您可以使用计数器:

int index = 0;
for (Annotation currAnnotation : annotation.getAnnotations())
{
List<Map<String, String>> list = annotation.getList();
... list.get(index) ...
index++;
}

关于java - 在数组上查找集合的索引,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13679025/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com