scala 集合的 map 映射、高阶函数使用、集合的压平、 集合的过滤、集合的简化、集合的折叠、集合的扫描、集合的拉链、集合的迭代器、集合的分组_scala 压平-CSDN博客网友收藏

scala 集合的 map 映射、高阶函数使用、集合的压平、 集合的过滤、集合的简化、集合的折叠、集合的扫描、集合的拉链、集合的迭代器、集合的分组_scala 压平-CSDN博客

文章浏览阅读371次。文章目录一、map 映射: list.map(fun)二、高阶函数的使用三、集合的压平:list.flatMap(fun)四、集合的过滤: list.filter(fun)五、简化:`list.reduceLeft(fun)` `list.reduceRight(fun)` `list.reduce(fun)`四、折叠: `list.foldLeft(fun) 等价 /:......
阅读全文
集合、数组、列表List、Set集合、Map集合、元组、集合常用函数、队列、并行集合_数组array 向量vector 列表list 队列queue 栈stack 映射map 集合set-CSDN博客网友收藏

集合、数组、列表List、Set集合、Map集合、元组、集合常用函数、队列、并行集合_数组array 向量vector 列表list 队列queue 栈stack 映射map 集合set-CSDN博客

文章浏览阅读444次。package chapter07//不可变数组object Test01_ImmutableArray { def main(args: Array[String]): Unit = { //1.创建数组 [数组里面每个元素的类型] [Int]给个泛型 val arr:Array[Int]=new Array[Int](5) //大小为5 长度为5的整数Int类型的数组 ......
阅读全文