scala过滤

object 过滤 {

def main(args: Array[String]): Unit = {
val list = (1 to 9).toList
// 过滤出1到9之间所有的偶数
val list1 = list.filter(x => x % 2 == 0)
// 简写
val list2 = list.filter(_ % 2 == 0)
println(list1)
println(list2)
}

}

scala过滤最先出现在Python成神之路

版权声明:
作者:cc
链接:https://www.techfm.club/p/20989.html
来源:TechFM
文章版权归作者所有,未经允许请勿转载。

THE END
分享
二维码
< <上一篇
下一篇>>