摘要: reduceLeft神语法 1 2 3 4 5 6 7 8 scala> a.reduceLeft(_ + _) // 数组求和 res0: Int = 64 scala> a.reduceLeft(_ * _) // 数组求乘积 res1: Int = 388800 scala> a.reduce 阅读全文
posted @ 2019-02-28 18:10 DianaLee 阅读(729) 评论(0) 推荐(0) 编辑