Scala数组遍历, 语法结构: for (i <- 区间)
val common = Array(1,2,3,4) // 遍历数组 for (i <- 0 until common.length) println(i + " : " + common(i)) println("=======================") // 每两个元素一跳 for (i <- 0 until(common.length,2)) println(i + " : " + common(i)) println("=======================") // 倒序遍历 for (i <- (0 until(common.length)).reverse) println(i + " : " + common(i)) println("=======================") // 不需要数组下标,直接访问数组 for (elem <- common) println(elem)
时间: 2024-10-11 07:20:45