标签:
学习了Scala中使用For表达式实现内幕思考,filter是if ,for是一般的表达式,有map ,filter等,建议用for循环来代替,更简洁跟具有表现力
例子如下:
Object For_Advancde {
Def main(args: Array[String]) {}
Def map[A,B](List: List[A], f:A=>B):List[B]=
For (element <-list) yield f(element)
Def flatmap[A,B](List: List[A], f:A=>B):List[B]=
For (x <-list; y<-f(x)) yield y
Def fileter[A](list:List[A] , f: A=> Boolean): List[A]=
For (elem<-list if f(elem) yield elem
标签:
原文地址:http://www.cnblogs.com/tom-lee/p/4741179.html