我有以下循环
for (Annotation currAnnotation : annotation.getAnnotations())
{
List<Map<String, String>> list = annotation.getList();
list.get(index)
索引应该是循环的索引,我该如何实现呢? 我需要从列表中获取具体条目。
谢谢!
答案 0 :(得分:2)
您可以使用计数器:
int index = 0;
for (Annotation currAnnotation : annotation.getAnnotations())
{
List<Map<String, String>> list = annotation.getList();
... list.get(index) ...
index++;
}