0

私はこの次のループを持っています

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

インデックスはループのインデックスでなければなりません。どうすれば達成できますか? リストから特定のエントリを取得する必要があります。

ありがとう!

4

1 に答える 1

2

カウンターを使用できます。

int index = 0;
for (Annotation currAnnotation : annotation.getAnnotations())
{
    List<Map<String, String>> list = annotation.getList();
    ... list.get(index) ...
    index++;
}
于 2012-12-03T07:41:58.083 に答える