标签:reac func 等价 fun for 数字 code pre cti
如果函数的参数在函数体内只出现一次,则可以使用下划线代替:
val f1 = (_: Int) + (_: Int)
//等价于
val f2 = (x: Int, y: Int) => x + y
list.foreach(println(_))
//等价于
list.foreach(e => println(e))
list.filter(_ > 0)
//等价于
list.filter(x => x > 0)
标签:reac func 等价 fun for 数字 code pre cti
原文地址:https://www.cnblogs.com/liuys635/p/12208756.html