Scala中的下劃線使用總結

Scala中的下劃線使用總結: 1. 方法轉化爲函數 例如: def m1(x:Int,y:Int)=x*y     val f1=m1 _ 2. 集合中的每一個元素 例如: val list=List(1,2,3,4) val list1=list.map(_ * 10) 3. 獲取元組Tuple中的元素 例如:  val t=("hadoop",3.14,100)   t._1      t.
相關文章
相關標籤/搜索