
scala
利剑 -~
追求卓越成功就会出其不意找上门
展开
-
scala的foreach和for
一句印象深刻的话,Alan Kay(Smalltalk发明者)说得一句话:“I’m not against types, but I don't know of any typesystems that aren't a complete pain, so I still like dynamic typing”。 并不是静态类型不好,只是静态类型的实现太让他痛苦了,所以他只好喜欢动态类型(语...转载 2018-08-04 15:12:54 · 839 阅读 · 0 评论 -
Scala:Function1、Function2
Function1 带一个参数的方法,声明时,它需要两个泛型参数,第一个是传入的数据类型,第二个表示返回的数据类型,Function1是 trait ,它有一个apply方法,用来对输入参数进行处理了,使用Function1,必须实现apply接口 val funs = new Function1[Int,Int] { def apply(x:Int) = { x + 1 }...转载 2018-08-04 20:17:12 · 444 阅读 · 0 评论