拡張for文
#java
collectionを順走査する簡易構文。
code:java
int sum = 0
for (var n : list) {
sum += n;
}
逆走査したい場合などはiteratorを使う。