使用迭代器时获取特定索引

时间:2015-09-01 14:03:11

标签: java collections iterator

我的代码中有一个列表

List result = dm.findByCustomQuery(uc,query);

我想从结果中获取某个值,特别是当索引为0时。

有没有办法可以使用迭代器,只需获取索引为0的列表值。

1 个答案:

答案 0 :(得分:1)

我不知道为什么要使用迭代器来获取第一个元素,无论如何,这是你可以的:

        Iterator<String> it = result.iterator();
        boolean first = true;

        while(it.hasNext()) {
            if (first) {
                System.out.println("The first element is: "+it.next() );
                first=false;
            } else {
                System.out.println("The next element is: "+it.next() );
            }
        }