数组遍历
object ScalaApp extends App {
val a = Array(1, 2, 3, 4, 5, 6, 7, 8, 9, 10)
// 1.方式一 相当于 Java 中的增强 for 循环
for (elem <- a) {
print(elem)
}
// 2.方式二
for (index <- 0 until a.length) {
print(a(index))
}
// 3.方式三, 是第二种方式的简写
for (index <- a.indices) {
print(a(index))
}
// 4.反向遍历
for (index <- a.indices.reverse) {
print(a(index))
}
}
网友评论