var list = listOf(1, 2, 3, 8, 9, 0, 4)
println("filter函数:"+list.filter { it % 2==0 })
06-03 11:35:23.140 2273-2273/com.troll4it.kotlindemo I/System.out: filter函数:[2, 8, 0, 4]
map
- map函数对集合中每一个元素应用给定函数并且把相对应的元素收集起来放到一个新的集合中
val list= listOf(2,3,4)
println("map函数:"+list.map { it*2 })
06-03 11:45:30.915 2422-2422/com.troll4it.kotlindemo I/System.out: map函数:[4, 6, 8]
集合:all 、any、count、find
val listOf = listOf(2, 3, 4, 5, 6, 7, 8)
println("all函数:"+listOf.all { it -> it<1 })
06-03 11:47:30.915 2422-2422/com.troll4it.kotlindemo I/System.out: all函数:false
var list = listOf(1, 2, 3, 4, 5, 6, 7, 8)
//list集合中没有一个元素大于9的
println("any函数"+list.any { it>9 })
06-04 12:19:24.320 1838-1838/com.troll4it.kotlindemo I/System.out: any函数false
var list = listOf(1, 2, 3, 4, 5, 6, 7, 8, 9)
//计数有多少大于4的元素
println("count函数: "+list.count { it>4 })
//同时也可以通过前面所说的过滤操作符来计数
println(list.filter { it>4 }.size)
06-04 12:24:58.495 2198-2198/com.troll4it.kotlindemo I/System.out: count函数: 5
5
- find:匹配多个元素返回其中相匹配的元素,如有多个自返回第一个元素
var listOf = listOf(1, 2, 3, 4, 5, 6, 7, 8, 9)
//找出大于6的元素
println("Find函数"+listOf.find { it>6 })
06-04 12:29:50.829 2322-2322/? I/System.out: Find函数7
groupBy
- groupBy 所有的元素按照不同的规则划分成不同的分组
var list = listOf(1, 2, 3, 4, 5, 6, 4, 6, 7, 8)
//按照list集合元素中大于5分组
println("groupBy函数" + list.groupBy { it> 5 })
06-05 15:41:51.008 9985-9985/? I/System.out: groupBy{false=[1, 2, 3, 4, 5, 4], true=[6, 6, 7, 8]}
flatMap处理嵌套集合中的元素
- flatMap
根据实参给定的函数对集合中的每一个元素做变换,然后把多个列表合并成一个列表
var listOf = listOf("123455", "232", "3423875")
//按照list的每个元素重新合并
println("FlatMap函数" + listOf.flatMap { it.toList() })
06-05 15:53:12.106 13553-13553/com.troll4it.testdemo I/System.out: FlatMap函数[1, 2, 3, 4, 5, 5, 2, 3, 2, 3, 4, 2, 3, 8, 7, 5]
```![0065oQSqly1frg40vozfnj30ku0qwq7s.jpg](https://upload-images.jianshu.io/upload_images/5401167-10c0a9e4465e96c0.jpg?imageMogr2/auto-orient/strip%7CimageView2/2/w/1240)