迭代非泛型列表的最佳方法是什么?
我必须使用一段旧代码,其中有一个列表,并且需要对其进行迭代。 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
使用
Iterator
:或者直接for-each更好:
Use
Iterator
:Or better directly for-each:
如果您需要能够从列表中删除当前元素,请使用迭代器:
或者使用 foreach 循环:
Either use an iterator, if you need to be able to remove the current element from the list:
Or use a foreach loop: