美文网首页
Scala学习随笔三

Scala学习随笔三

作者: 希望是水户洋平 | 来源:发表于2020-07-10 21:48 被阅读0次

    数组遍历

    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))
      }
    
    }
    
    

    参考:
    https://juejin.im/post/5d859398f265da03b9502f4c

    相关文章

      网友评论

          本文标题:Scala学习随笔三

          本文链接:https://www.haomeiwen.com/subject/oapmcktx.html