迭代非泛型列表的最佳方法是什么?

发布于 2024-12-04 19:54:59 字数 285 浏览 1 评论 0原文

我必须使用一段旧代码,其中有一个列表,并且需要对其进行迭代。 Foreach 循环不起作用。哪种方法是最好、最安全的?

例子

private void process(List objects) {
    someloop {
        //do something with list item
        //lets assume objects in the List are instances of Content class
    }           
}

I have to use an old piece of code where I have a List and I need to iterate over it. Foreach loop does not work. Which is the best and safest way to do this?

Example

private void process(List objects) {
    someloop {
        //do something with list item
        //lets assume objects in the List are instances of Content class
    }           
}

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

黯然 2024-12-11 19:54:59

使用Iterator

Iterator iter = objects.iterator();
while (iter.hasNext()) {
    Object element = iter.next();
}

或者直接for-each更好:

for (Object obj : objects) {
}

Use Iterator:

Iterator iter = objects.iterator();
while (iter.hasNext()) {
    Object element = iter.next();
}

Or better directly for-each:

for (Object obj : objects) {
}
梦在深巷 2024-12-11 19:54:59

如果您需要能够从列表中删除当前元素,请使用迭代器:

for (Iterator it = list.iterator(); it.hasNext();) {
    Foo foo = (Foo) it.next();
    // ...
    it.remove();
}

或者使用 foreach 循环:

for (Object o : list) {
    Foo foo = (Foo) o;
    // ...
}

Either use an iterator, if you need to be able to remove the current element from the list:

for (Iterator it = list.iterator(); it.hasNext();) {
    Foo foo = (Foo) it.next();
    // ...
    it.remove();
}

Or use a foreach loop:

for (Object o : list) {
    Foo foo = (Foo) o;
    // ...
}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文