flatMap的使用写成匿名函数方式
时间: 2023-11-08 21:02:39 浏览: 54
匿名函数方式使用flatMap,可以这样写:
```
val list = listOf("hello world", "how are you")
val flatMapResult = list.flatMap { it.split(" ") }
```
上述代码中,我们将list中的每一个元素按照空格分隔成一个个单词,最终将所有单词拼接在一起,存储在flatMapResult中。
阅读全文