2015年2月6日

scala学习笔记:match表达式

摘要: 写了一个超级长的表达式,估计不是最简洁的:scala> def foo(ch:Any)=ch match { case true=>"male";case false=>"female";case i:Int if(i==0)=>"female";case i:Int if(i!=0... 阅读全文

posted @ 2015-02-06 21:30 白乔 阅读(217) 评论(0) 推荐(0) 编辑

scala学习笔记:集合

摘要: scala> 1 to 10res9: scala.collection.immutable.Range.Inclusive = Range(1, 2, 3, 4, 5, 6, 7, 8, 9, 10)scala> List(1,2,3,4)res10: List[Int] = Li... 阅读全文

posted @ 2015-02-06 08:47 白乔 阅读(133) 评论(0) 推荐(0) 编辑

scala学习笔记:高阶函数

摘要: scala> def power(y:Double)=(x:Double)=>Math.pow(x,y)warning: there were 1 deprecation warnings; re-run with -deprecation for detailspower: (y:... 阅读全文

posted @ 2015-02-06 08:37 白乔 阅读(199) 评论(0) 推荐(0) 编辑

导航