Ways to iterate over a list in Java

后端 未结 12 2101
孤独总比滥情好
孤独总比滥情好 2020-11-22 00:46

Being somewhat new to the Java language I\'m trying to familiarize myself with all the ways (or at least the non-pathological ones) that one might iterate through a list (or

12条回答
  •  野的像风
    2020-11-22 01:16

    Right, many alternatives are listed. The easiest and cleanest would be just using the enhanced for statement as below. The Expression is of some type that is iterable.

    for ( FormalParameter : Expression ) Statement
    

    For example, to iterate through, List ids, we can simply so,

    for (String str : ids) {
        // Do something
    }
    

提交回复
热议问题